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 trial

HTML How to Make a Website Beginning HTML and CSS Write a CSS Selector and Property

Daniel Scalia
Daniel Scalia
8,486 Points

beggining 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>

Daniel Scalia
Daniel Scalia
8,486 Points

here is what I wrote: <style>

h1 { color: blue; }

</style> <h1>Nick Pettist</h1>

Thanks for any help you may have!

3 Answers

Hey Daniel, it's asking you to add the <style> Your CSS </style> tags.

cpauciello
cpauciello
26,629 Points
<body>
 <style>

  </style>
    <h1>Text You'll Srtyle</h1>
</body>
Errol Ikalina
Errol Ikalina
353 Points

you just need to enclose it with style tags