0

I'm stuck on this fill in the blank question in css font.

I'm stuck on this question: ________ { ______ : ______ ; } These are the words i have in the word bank: font-size, font-family, font-name, p, and Arial the question wants me to make the font of the paragraph "Arial"

30th May 2019, 4:53 PM
CODY HANDY
CODY HANDY - avatar
1 Respuesta
+ 1
You're trying to change the font style, so font-size is irrelevant. P is a tag, not a property so it would go in the first blank. font-name , Arial, and font-family are the last options. Arial is a font so it wouldn't be the property name, so put it in the third blank. font-name and font-family are the candidates for the property name. This is just memorization. Font-name doesn't exist. So font-family would go in the second blank. The final string is "p { font-family: Arial }"
30th May 2019, 5:04 PM
Ben Allen (Njinx)
Ben Allen (Njinx) - avatar