Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

audblah
837 PointsI keep putting the <p> tag between the <body></body> tag like the directions say and it says I'm wrong.
Is there a malfunction?
<!DOCTYPE html>
<html>
<head>
<title>Yes, please.</title>
<meta charset="utf-8">
<style>
h1{text-align: left; color: blue}
h2{text-align: left; color: red}
</head>
<body>
<p>My first paragraph</p>
</body>
</html>
3 Answers

Jessica Dobson
6,029 PointsIt looks like you need a closing </style>
.

audblah
837 PointsThank you!

Jeremy Hill
29,567 PointsIt looks like you need a closing </style>
tag.