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

erika cecilia
541 Pointswhat am I doing wrong?
I am putting the <p> tags in between <body> and </body> But I keep getting a bummer notice to do that.. What am I doing wrong?
<!--THIS IS THE STORY OF MY LEARNING JOURNEY
<!DOCTYPE HTML><HTML>
<HEAD> </HEAD>
<body> <p> My first paragraph </p> </body>
</HTML>
1 Answer

Rohald van Merode
Treehouse StaffHey erika cecilia 👋
The tests for these coding challenges are pretty strict when it comes to the text content you're providing. There are two things you'll want to adjust to the paragraph text.
- Remove the spaces surrounding the string
- Add an
!
as the challenge asks for the text to be "My first paragraph!"
This should result in the following code which should pass the challenge as expected:
<!DOCTYPE html>
<html>
<head></head>
<body>
<p>My first paragraph!</p>
</body>
</html>
Hope this will help to get you going again 😁