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 trialVeronica Wunderlich
67 PointsI keep getting a "bummer! Don't forget your style tag" response, my page looks like the example.
my page looks like this
<style>
h1 {
color: Purple;
}
</style>
<h1>Veronica Wunderlich</h1>
<style>
h1 {
color: Purple;
}
</style>
<h1>Veronica Wunderlich</h1>
2 Answers
Jovanny Elias
16,204 PointsIf you are using it as inline it would look something like this.
<h1 style="color:blue;margin-left:30px;">This is a heading.</h1>
tootiemcflow
5,601 PointsHey Veronica, the 3rd question ask you to set the color to green and you have purple set.
<body>
<style>
h1 {
color: green;
}
</style>
<h1>Nick Pettit</h1>
</body>
Jovanny Elias
16,204 PointsJovanny Elias
16,204 PointsYou take a look at this and see the differnt ways to add css to your html it also includes demos you can play around with.