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 trialpenmetsa venkata subbaraju
413 PointsWRITE HEXADECIMAL CODE TO WHITE FOR HEADLINES
I HAVE SET BOTH HEADLINES TO WHITE THEN Y IT IS SHOWING ERROR
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1,h2{color : #111111; }
4 Answers
Holger Liesegang
50,595 PointsHi penmetsa venkata subbaraju ,
The hexadecimal value for the color white is #FFFFFF (black would be #000000).
Hence the solution for "Set the color of first and second level headlines to white using a hexadecimal value." would be
h1, h2 {color : #FFFFFF};
penmetsa venkata subbaraju
413 Pointssorry i confused n wrote it to #111111; thanks alot for your quick response.
David Stocum
10,120 PointsYour hex value doesn't represent the color white, that's the problem.
Remember, hex RGB values range from #000000 (black) to #FFFFFF (white); #111111 is an extremely dark gray.
penmetsa venkata subbaraju
413 Pointsthanx david.
Robert Erwin
2,317 PointsRobert Erwin
2,317 Pointsthere are 8 f not 6.
Robert Erwin
2,317 PointsRobert Erwin
2,317 Pointsthere are 8 f not 6.
Robert Erwin
2,317 PointsRobert Erwin
2,317 Pointsthere are 8 f not 6.
Robert Erwin
2,317 PointsRobert Erwin
2,317 Pointsthere are 8 f not 6.