In step 59 of [Learn Basic CSS by Building a Cafe Menu] it says " Style both the h1
and the h2
elements so that only these elements’ text use Impact
font."
My solution looks like this:
h1, h2{
font-family: impact;
}
…and it displays the font accurately in the console. Yet I still get the error message " You should set the font-family
to Impact
"
Thank you for reading