Facing Problems while submitting

I had written the code with correct answer. Even I had seen your Solution But I am not able to Complete it Please Help me !

Your code so far


<style>
body {
  background-color: #FFFFFF;
}
.orange {
background-color: #FF7D00;
}

.cyan {
background-color: #00FFFF;
}

.raspberry {
background-color: #FF007D;
}

div {
  height: 100px;
  width: 100px;
  margin-bottom: 5px;
}
</style>

<div class="orange"></div>
<div class="cyan"></div>
<div class="raspberry"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0.

Challenge: Learn about Tertiary Colors

Link to the challenge:

Check the colors of orange and raspberry in the classes .orange and .raspberry. The colors you have used are not right! Instead of F you have D in the colors. If you change that your code will be submitted without any problems !

OK I’ll Check it !
Thanks

Can You Please check it, I have written the tight code now Then too it’s giving me error

You didn’t change anything the colors are still wrong.

I had copy paste the Hint code as it is !
Can you tell me what is the solution then?

The hint code is wrong (not the first time for fcc). Reread the instructions and the suggestions in the responses here.

  1. The div element with class orange should have a background-color of orange.
  2. The div element with class raspberry should have a background-color of raspberry.

Even I had seen the Solution Video They had done the same thing.
If you know the solution please help

From the directions:

Color Hex Code
orange #FF7F00
cyan #00FFFF
raspberry #FF007F

Thank you soo much !
Now I have Understand ! :smile: