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 trialKatherine Kaiser
674 Points<html> <body> <h1> </h1> </body> </html>: What's wrong with my order? The quiz answer says I'm wrong.
Am I wrong?
2 Answers
Lukas Muller
7,347 PointsYou are missing the head tag. It is contained in HTML and comes before the body tag :)
bothxp
16,510 PointsHi Katherine,
On which task were you having problems?
I noticed that task 3 is to "Write the opening and closing head and body elements between your <html> tags."
For that one you need to be making use of the head and body tags. In your code you are using h1 header tag and the body tags.
My answer to that task was:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
Did that help?
Katherine Kaiser
674 PointsYes, thanks for the detailed answer. It helped!
Katherine Kaiser
674 PointsKatherine Kaiser
674 PointsThanks, Lukas!