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

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

It says "don't forget to check your style tag". I think I have that. Can you help me see what I'm missing?

I'm stuck on the challenge task. I think I have both ends of the style tag, and my work looks just like the sample in the tutorial video. What am I missing?

index.html
<style>

  h1 {
     color:blue;
  }

</style>

 <h1>Sarah Yam</h1>

3 Answers

Yulia Markina
Yulia Markina
12,616 Points

Hi Sarah! The code looks correct and I got the same code at the end of the challenge, except the color. It says use green color:) If this doesn't help, try to start over the challenge, sometimes there are some connecting issues.

Hi Sarah,

You are missing body tags, hope that helps. :-)

See example below:

<body>

<style>
   h1 {
     color: blue;
   }
</style>

<h1>Sarah Yam</h1>

</body>

It worked! Thanks!