Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMillard Hill
167 Pointswebsite will not let me / on htlm root docment
web site will not let me / on HTLM root docment
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Nick Pettit | Designer</title>
</head> <header>
<boby>
<h1>Nick Pettit</h1>
<h2> Designer </h2>
<header>
<section>
<p> Gallery will go here.<p>
<section>
<footer>
<footer>
<boby>
<html>
1 Answer
Jonathan Leon
18,813 PointsHey there.
I see you did not close your tags, for example <html> and <footer> should first open and then </html> </footer> close.
Second of all <boby> is not an appropriate tag and its not closed either.
Think of a tag as a program that starts <> , executes (the text inside the tags and then the content between the opening and closing tagsm and closes </>.
Sometimes tags are self closing and they don't need a </> tag.
Best of luck.