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.

Ralph Tricoche
186 PointsIm getting an error, why?
This is what I wrote to make my h1 element green, don't know why I'm getting an error. Says bummer.
<body> <style>
h1 {
color: green;
}
<h1>Ralph Tricoche</h1>
</style>
</body>
3 Answers

Eric Felder
1,308 PointsIt looks like you have your h1 tag inside your style tag. Your h1 should be outside the style tag:
<style>
h1 {
color: green;
}
</style>
<h1>Ralph Tricoche</h1>

Erwin van Hoof
11,690 PointsYou need the CSS to be wrapped in a style tag
like this:
<style>
h1 {
color: green;
}
</style>
<h1>Ralph Tricoche</h1>

Ralph Tricoche
186 PointsThank you both. I see my error now. I appreciate the speedy response.