Can someone explain what I’m doing wrong in this exercise.
Here is what I’ve done
body {
height: 100%;
margin: 0;
text-align: center;
width: 100%;
}
h1 { font-family: Palatino, 'Palatino Linotype', serif;
font-size: 32px;
color:#2e69a3
}
h2 {
font-size: 32px;
}
And the problem is with the color in h1.
The instructions are:
HEX color provide millions of different shades of colors.
Try replacing the named color with one of the HEX colors below.
#2e69a3
#d8dabe
#dabece
#799575
Click Run to see the result in the web browser.
As you can see I have the first of the examples in the code.
The error message that comes up is
“Did you change the h1 color to a hexadecimal value?”
I have put in all of the examples given and still this message comes up, is there something I need to change?