How to Style the HTML Body Element

Tell us what’s happening:

Your code so far


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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/style-the-html-body-element/

you have a missing angled brace next to the word style

fix it to be
<style>

1 Like