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.
David Norton
2,762 PointsIt says bummer do not forget your style code bout everything works and I have it exactly as shown. Please tell me the er
Please tell me the error
4 Answers

Eivind Jonassen
5,994 PointsHere is an example that should work, maybe you can figure out where you went wrong? :) Keep up the good work :)
<body>
<style>
body h1 {
color: green;
}
</style>
<h1>Nick Pettit</h1>
</body>

Peaches Stubbs
21,320 PointsCan you show us your code and the question?
David Norton
2,762 PointsThis is all very confusing the lesson does not say anything about the body tag. That the selector code should be body h1. But thank you Elvind for the right code that works. <body> <style> body h1 { color: green; } </style> <h1>Nick Pettit</h1> </body>

Hugo Paz
15,622 PointsThere is no need for the body selector. While Elvind solution is correct, what they ask in the challenge is this:
<body>
<style>
h1{color:green;}
</style>
<h1>Nick Pettit</h1>
</body>