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 trialaudblah
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
Full Stack JavaScript Techdegree Graduate 22,356 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.