i need help with this exercise, The div element with class cyan already have a background-color of cyan but i keep getting it wrong
here is my code:
<style>
body {
background-color: #FFFFFF;
}
.green {
background-color: hsl(120, 100%, 50%);
}
.cyan {
background-color: hsl(180, 100%, 50%);
}
.blue {
background-color: hsl(240, 100%, 50%);
}
div {
display: inline-block;
height: 100px;
width: 100px;
}
</style>
<div class=“green”></div>
<div class=“cyan”></div>
<div class=“blue”></div>
here is the error message:
“The div element with class cyan should have a background-color of cyan.”