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 trialNisi Ryan Cruz
Courses Plus Student 1,153 PointsIs This Not in Between? <body>"My first paragraph!"</body>
is this not in between what do i need to add po?
<!--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
11,850 PointsI completely get what you mean, but they want you to only put whats inside the quotes, not the quotes themselves.
Rachel Lev
14,583 PointsThe 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>