h1{
font-family: garamond, serif;
color: #FFF;
font-size: 32px;
padding-top: 100px;
text-align: left;
width: 60%;
}
This is what I am imputing for this section and it is saying its incorrect. Any help please?
I have tried it in both Chrome and Firefox
I keep getting a Error saying the fall back font has not been set
Is it this exercise:
In style.css, set the first fallback font of the main heading and subheading to Garamond, and set the final fallback font to serif.
?
If so, you were asked to specify a first and the final fallback, so you should keep the original value of font-family
, it was Georgia
, I think.
And the correct name is Garamond
.
font-family: Georgia, Garamond, serif;
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.