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 trial

HTML Treehouse Club: HTML Publish a Story HTML Structure

<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
Lukas Muller
7,347 Points

You are missing the head tag. It is contained in HTML and comes before the body tag :)

Thanks, Lukas!

Hi 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?

Yes, thanks for the detailed answer. It helped!