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 trialPaul Duggan
199 Pointscannot 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,
<style>
h1 {
color: blue;
}
</style>
<h1>Nick Pettit</h1>
4 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHey 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
1,005 Pointsdo it like this <style> h1 { color: blue; } </style> <h1>Nick Pettit</h1>
Caleb Kleveter
Treehouse Moderator 37,862 PointsRemember to set the color to green, not blue. Hope that works!
Paul Duggan
199 PointsThank guys. That clear anwser.
Simon Chercka
23,809 PointsSimon Chercka
23,809 PointsYou need to put the css in the style.css file, not inline in the HTML.