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 an HTML Element

i don't know the answers

i need help

index.html
>style<

h1 {
          color: blue:
          }
          <syle<}

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

Raphael Reiter
Raphael Reiter
6,820 Points

Your end style code is missing a T and the first one has arrows wrong way around

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

Every function has to have a beginning and end code. the difference is the slash

the other brackets are like ( ) but divided in more lines to be more visable

1 Answer

Hi Vanessa,

It seem a bit confusing what you tried to code, here is an example of what I think you tried to write:

<style>

h1 {
      color: blue;
}

</style>