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

Brandon N/A
Brandon N/A
818 Points

what the heck am i doing wrong there has to be an error on this page

inside your body element in > paragraph type "My first paragraph!"

i entered every from pre tasks <!--This is my story--> <!DOCTYPE html> <html> <head></head> <body></body> </html>

it keeps telling your paragraph needs to be entered between <body></body>

index.html
<!--This is my story-->
<!DOCTYPE html>
<html>
  <head></head>
  <body></body>

  <body>
    <p> My First Paragrap! </p>
  </body>
  </html>

1 Answer

Michael Afanasiev
PLUS
Michael Afanasiev
Courses Plus Student 15,596 Points

Hi Brandon!

An HTML document can only contain 1 set of body tags, if you check your markup you made 2 pairs of body by mistake.

Hope this helps!

By the way, I understand your frustration with these challenges but try to be a little bit more patient and not post the same thing twice. :)