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

Is This Not in Between? <body>"My first paragraph!"</body>

is this not in between what do i need to add po?

index.html
<!--Use the <p> tag to start a new paragraph and </p> at the end of each paragraph.-->
<!DOCTYPE html>
<html><head></head>
<body>"My first paragraph!"</body>
</html>

2 Answers

Cooper Runstein
Cooper Runstein
11,850 Points

I completely get what you mean, but they want you to only put whats inside the quotes, not the quotes themselves.

Rachel Lev
Rachel Lev
14,583 Points

The paragraph should be in <p></p> tags, inside the <body>. like this:

<!DOCTYPE html>
<html>
  <head></head>
  <body>
     <p>"My first paragraph!"</p>
  </body>
</html>