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

cannot proceed any further. the completed code is correct.

cannot proceed any further. coding apears correct. it turns blue but is not correct. a bummer red cross comes up,

index.html
<style>

  h1 {
    color: blue;
  }

</style>
<h1>Nick Pettit</h1>
Simon Chercka
Simon Chercka
23,809 Points

You need to put the css in the style.css file, not inline in the HTML.

4 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,860 Points

Hey Paul,

The code is correct, and Caleb is correct about having to use green.

But, it looks like you deleted the <body> tags that are pre-entered when the challenge begins. If you delete any code that was there when the challenge starts, it will not let you pass.

Put those tags back in change the color declaration to green, and you should be good to go.

Keep Coding! :)

Krishnendu Banerjee
Krishnendu Banerjee
1,005 Points

do it like this <style> h1 { color: blue; } </style> <h1>Nick Pettit</h1>

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

Remember to set the color to green, not blue. Hope that works!

Thank guys. That clear anwser.