Override with Inline Styles

guys help me plz???

can u

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 style="color: white">
<h1 id="orange-text" class="pink-text blue-text">Hello World!</h1>

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

Like this.

<h1 id="orange-text" class="pink-text blue-text" style="color: white">Hello World!</h1>
1 Like