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

Error Don't forget your style tag

When I click recheck work I get an error which says don't forget your style tag. What does that mean?

index.html
<Style>
  h1 {
      color: blue;
    }
</Style>
<h1>Monica Sharma</h1>

4 Answers

Dustin Leer
Dustin Leer
21,063 Points

Hi Monica,

You need to make the "s" in style lowercase? As it is no longer a recognized tag with a capital "S".

Cheers,

-Dustin

Hi Dustin,YesI did try the lowercase "s" but still getting the same error.

Let me try again

Dustin Leer
Dustin Leer
21,063 Points

You also need to put it inside the body tag.

<body>
    <style>
    </style>
    <h1>Nick Pettit</h1>
</body>

Thank You Dustin. I was missing on the body tag. It worked.

Dustin Leer
Dustin Leer
21,063 Points

Awesome glad I could help! If you could would you be willing to up vote what helped you please.

Thanks!