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 trialDaniel Scalia
8,538 Pointsbeggining html training
I am trying to complete task 1 of 3 on the challenge to Beginning HTML and CSS... It keeps stating "bummer! don't forget style tags. Here is my document for the task 1:
<style>
h1 { color: blue; }
</style> <h1>Nick Pettist</h1>
3 Answers
Dustin Matlock
33,856 PointsHey Daniel, it's asking you to add the <style> Your CSS </style>
tags.
cpauciello
26,629 Points<body>
<style>
</style>
<h1>Text You'll Srtyle</h1>
</body>
Errol Ikalina
353 Pointsyou just need to enclose it with style tags
Daniel Scalia
8,538 PointsDaniel Scalia
8,538 Pointshere is what I wrote: <style>
h1 { color: blue; }
</style> <h1>Nick Pettist</h1>
Thanks for any help you may have!