Style the HTML Body Element help plz

Tell us what’s happening:

For some reason there is no background color showing on the page even though i feel this is coded correctly.

Your code so far

<style>
  body {
    background color: black;
  }
</style>
<body>
  <h1> hahahahahahah </h1>
  <p> HAHAHAHAH </p>
    </body>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/style-the-html-body-element

@Jazzy111 you’re super close! Try:

<style>
  body {
    background-color: black;
  }
</style>
1 Like

ahhh! thanks so much :slight_smile: sometimes it is as simple as one character!

1 Like