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

It will not work

When I take working code from workplaces into the coding challenge it will not work. Please help!

Please show use your code.

I go from this:

<body>
  <style>
    <h1 {

    }>Davis Kimoto</h1>
  </style>
<body>

Which that is checked off as being okay, but then I do this to change the header to the color green:

<body>
  <style>
    <h1 {
    color:green;
    }>Davis Kimoto</h1>
  </style>
<body>

The only thing it says is "Bummer null"

3 Answers

Hi Davis,

Look at the code below and study the order that things are laid out. In your code you have things all mixed up.

Jeff

<body>
  <style>
    h1 {
      color: green;
    }
  </style>
    <h1>Davis Kimoto</h1>
</body>

OK, thank you so much Jeff.

James Barnett
James Barnett
39,199 Points

Davis KImoto - I think you are conflating CSS & HTML syntax.