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 trialAllen Mcgowan
179 PointsI cannot pass this page
Does anyone see anything wrong with this code? I duplicated Nick Pettit's example.
<style>
h1 {
color: blue;
}
</style>
<body>
<h1>Nick Pettit</h1>
</body>
2 Answers
akak
29,445 PointsHi. They want you to enter style above h1, not above body.
<body>
<style>
</style>
<h1>Nick Pettit</h1>
</body>
This worked for me.
Niyamat Almass
8,176 PointsThe style tag might be in the body tag and the color of h1 is green
<body>
<style>
h1 {
color: green;
}
</style>
<h1>Nick Pettit</h1>
</body>
Allen Mcgowan
179 PointsThank you sir. I did not realize I was not in the body brackets.
Allen Mcgowan
179 PointsAllen Mcgowan
179 PointsThank you Thank you