I need help plz i cANT undERSTand It

Tell us what’s happening:

Your code so far

<style>
  .red-text {
    color: FF0000;
  }
  .green-text {
    color: black;
  }
  .dodger-blue-text {
    color: black;
  }
  .orange-text {
    color: black;
  }
</style>

<h1 class="red-text">I am FF0000!</h1>

<h1 class="green-text">I am green!</h1>

<h1 class="dodger-blue-text">I am dodger blue!</h1>

<h1 class="orange-text">I am orange!</h1>

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/use-hex-code-to-mix-colors

Just read carefully…
Example: Use the hex code for the color green instead of the word green.
It’s not:

 .green-text {
    color: black;
  }

Use HEXCODE above instructions for green color.
Green #00FF00

 .green-text {
    color: #00FF00;
  }

Do this for all colors.

thanks for the help i didn’t notice :blush: