The correct answer is: C. font-family
The font-family property sets the font face to be used for text. It takes a
The font property is a shorthand property for the font-family, font-size, font-weight, font-style, and font-variant properties. It can be used to set all of these properties
The font-text property is not a valid CSS property.
Here is an example of how to use the font-family property:
css
p {
font-family: Arial, sans-serif;
}
This will set the font family for all paragraphs to Arial, sans-serif. If Arial is not available on the user’s computer, the browser will try to use the next font family in the list, sans-serif.