Responsive Web Design- Basic CSS- Use Hex Code to Mix Colors

I can not get through this step and i do not know why.
It’s somehow not accepting my dodgerblue part.

  **Your code so far**

<style>
.red-text {
  color: #FF0000;
}
.green-text {
  color:#00FF00;
}
.dodger-blue-text{
  color: #1E90FF;
}
.orange-text {
  color: #FFA500;
}
</style>

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

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

<h1 class="#1E90FF">I am dodger blue!</h1>

<h1 class="orange-text">I am orange!</h1>
  **Your browser information:**

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

Challenge: Use Hex Code to Mix Colors

Link to the challenge:

You changed the value of the class on this line;
<h1 class="#1E90FF">I am dodger blue!</h1>

You can use the Reset All Code button and redo the lesson. Only change what’s in the style tags.

Thanks. I do not know how didn’t realize it.

It’s easy to do. You change something to see what will happen and forget you’ve done it.

Thank you for your help once again.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.