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

<body> <p>My first paragraph!</p> </body>

its not working ? why only this place any others is fine?

index.html
<!DOCTYPE html>
<html></html>
<html>
  <head>
  </head>

  <body>
  </body>
</html>
<html>
<body>
  <p>My first paragraph!</p>
  </body>
</html>

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Istvan,

You seem to have some duplicate code there. In an HTML document, there can be only one opening/closing <html> tag (there are currently 3), same for <body> (and a few others).

I'm not sure what happened, but if you delete the 2nd line (with <html></html>) and everything after the closing </html> (including your paragraph). Then re-enter the paragraph between the existing <body> tags, you should be good to go.

When you complete all four tasks, there should be 8 lines of HTML text.

Keep Coding! :dizzy: