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

I cannot pass this page

Does anyone see anything wrong with this code? I duplicated Nick Pettit's example.

index.html
<style>
  h1 {
    color: blue;   
  }

</style>

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

2 Answers

akak
akak
29,445 Points

Hi. They want you to enter style above h1, not above body.

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

This worked for me.

Thank you Thank you

Niyamat Almass
Niyamat Almass
8,176 Points

The style tag might be in the body tag and the color of h1 is green

index.html
<body>
    <style>
    h1 {
    color: green;
    }
  </style>
    <h1>Nick Pettit</h1>
</body>

Thank you sir. I did not realize I was not in the body brackets.