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 trialBrandon N/A
818 Pointswhat 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>
<!--This is my story-->
<!DOCTYPE html>
<html>
<head></head>
<body></body>
<body>
<p> My First Paragrap! </p>
</body>
</html>
1 Answer
Michael Afanasiev
Courses Plus Student 15,596 PointsHi 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. :)