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

style tag

style tag

index.html
<style>

    h1 {color: blue;

       }

</style>
    <h1>tigiste tsegaye</h1>

3 Answers

Not sure what exactly is your question here. But from the code snippet provided all I can say is you should try and allocate each of the elements with the appropriate tags

So for instance

<!DOCTYPE html>
<html>
           <head>
                      // Your style goes in here
           </head>

          <body>
                  // Your h1 tag goes in here
          </body>
</html>

Hope it makes sense. Ask again in case you had some other problem

At that point in the course, there are no body or head tags. He appears to have done it correctly for that video. But there is no question, so........