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 Customizing Colors and Fonts Write Hexadecimal Colors

Set the color of paragraphs to black using a hexadecimal value.

I have tried the following with no success. I have also tried with nav and body.

p { color: #fff; }

6 Answers

Hexadecimal for black is #000;

h1 { color: #000; } h2{ color: #000; } can youplease help me.I can't find the mistake.thank you in advance:)

The first step for this code challenge is to set the color for h1 and h2 to white. #000 is for black. You need to use #fff.

Thanks Emma - what a silly mistake.

I've done the samenthing plenty of times. :-)

p { color: #000; } this was the second step

it doesn't work for me!

This doesn't work for me as well

ohh yeap i found it after a while thank you a lot!:)

what about the second step of code?