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 trialRalph 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.