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 trialJames Chi
941 PointsI don't understand this question. Help?
I can't figure this out!
<!DOCTYPE html>
<html>
<body>
</html>
3 Answers
sizwengubane
15,244 PointsThis is the complete answer for all 6 steps of the challenge Please go through this code and try to figure out where u are stuck at <blockquotes>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<header></header>
<section></section>
<footer></footer>
</body>
</html>
</blockquotes> Hope you can figure things out..please mark my answer as the best if i helped u
mohammed abdi abdulahi warsame
4,926 PointsYou didn't close the body tag.
Katelyn Morris
3,443 PointsYou have it right. You may just need to close out your <body> tag.
Craig Campbell
14,428 Pointsin HTML code, you ALMOST always need a closing tag ( </something> . That is <foo> should always be closed with </foo>. So you have an opening <body> but are missing the closing tag </body>. But note how you already have <html> and </html>. The <body> is IN BETWEEN (we say it is nested inside) the <html> and </html> tags. This means your closing </body> tag needs to go in between the <html> </html> too.
NOte: there are a few tags that don't have a </> closing tag. For example: link and image tags. But when in doubt, add a closing </> tag!
James Chi
941 PointsThank you!
Aaron Addleman
Courses Plus Student 3,084 PointsAaron Addleman
Courses Plus Student 3,084 PointsLooks like its missing a closing
</body>