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 trialguedi mohamed warssame
101 Points\\help me to find out the error <style> h1 { color: orange; } </style> <h1>Gouled</h1>
i can find the error in this code so hepl me to found out
<style>
h1 {
color: orange;
}
</style>
<h1>Gouled</h1>
3 Answers
Joren Paridaens
1,602 Points@Abraham Swaray is right, the code should be as follows:
<body>
<style>
h1 {
color: green;
}
</style>
<h1>Ghouled</h1>
</body>
Pokemon Rift
4,225 PointsI believe you should add some html, body, and head tags along the way. Something like this.
<html>
<head>
<style>
h1 {
color: orange;
}
</style>
</head>
<body>
<h1>Ghouled</h1>
</body>
</html>
Abe Layee
8,378 PointsYou have to set the color to green not orange.
Tony Nguyen
24,934 PointsTony Nguyen
24,934 PointsAre you sure you put the correct color? I had to put in Green for mines.