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 trialKai Yano
598 PointsI keep on getting a Bummer that said your paragraph should go between the body tags
<body>
<p> My first Paragraph! </p>
</body>
Why would this be not said that the paragraph is not between the body? I also tried adding space but does not change.
<!--This is my story, but you should insert your own story below. Use the <p> tag to start a new paragraph and </p> at the end of each paragraph.-->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p> My first Paragraph! </p>
</body>
</html>
1 Answer
Caleb Kemp
12,755 PointsYour code looks very good, the challenge is just failing because you have the comment in there. Take out the comment and it will works. so change
<!--This is my story, but you should insert your own story below. Use the <p> tag to start a new paragraph and </p> at the end of each paragraph.-->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p> My first Paragraph! </p>
</body>
</html>
to
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p> My first Paragraph! </p>
</body>
</html>
and it will work. Hope that helps, sorry the challenge was so buggy.
Kai Yano
598 PointsKai Yano
598 PointsThank you so much, it worked!
Caleb Kemp
12,755 PointsCaleb Kemp
12,755 PointsGlad to hear it helped