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 trial

CSS How to Make a Website Beginning HTML and CSS Write a CSS Selector and Property

Ralph Tricoche
Ralph Tricoche
186 Points

Im 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
Eric Felder
1,308 Points

It 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>

You need the CSS to be wrapped in a style tag

like this:

<style>
h1 {
  color: green;
}
</style> 

<h1>Ralph Tricoche</h1>
Ralph Tricoche
Ralph Tricoche
186 Points

Thank you both. I see my error now. I appreciate the speedy response.