The correct line that will change the font family to serif is:
font-family: "serif";
Note that the quoted versions and the unquoted versions will have the same effect in this context. The other options provided are not valid CSS syntax.
(1 point)
Responses
font-family: "serif";
font-family: "serif";
font: "serif";
font: "serif";
serif: font-family;
serif: font-family;
font-family is "serif";
1 answer
The correct line that will change the font family to serif is:
font-family: "serif";
Note that the quoted versions and the unquoted versions will have the same effect in this context. The other options provided are not valid CSS syntax.