<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/learn-html-css/lessons/css-structure-syntax/exercises/universal-selector
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
The instructions specified the use of the font family “Georgia”, but the error message recommends using “Helvetica”. The exercise fails with either font families. Both font families have an effect on the html preview.
- {
font-family: georgia;
}
h1 {
color: firebrick;
}
p {
font-size: 18px;
}
h1, p {
color: darkslategray;
}
<do not remove the three backticks above>