Override Class Declarations with Inline Styles

Tell us what’s happening:

Your code so far

<style>
  body {
    background-color: black;
    font-family: Monospace;
    color: green;
  }
  #orange-text {
    color: orange;
  }
  .pink-text {
    color: pink;
  }
  .blue-text {
    color: blue;
  }
</style>

<h1 id="orange-text" class="pink-text blue-text">Hello World!
<h1 style="color: white">   
</h1>            ```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; CPNTDFJS; rv:11.0) like Gecko```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/override-class-declarations-with-inline-styles

It continues to say my h1 element should be white, but I can’t figure out how to fix it.

Your white h1 is completely empty. I assume you are supposed to update the existing h1.