Use Hex Code to Mix Colors: give your h1 element with the text I am red! the color red. Use the hex code for the color red instead of the word red

Tell us what’s happening:
someone help me. i have done everything i could think of, but it won’t just click, that’s my code below, what should i do plz?

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="#FF0000-text">I am red!</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 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36.

Link to the challenge:

thanks people, finally got to solve it by myself when i changed my browser.

1 Like

Put Hex code in upper case letter format for example
#FFA500 hex code for Orange color.
Put remaining as it is…