Answer :

Answer:

option 3:

font-family

Explanation:

to change the font of an element in an HTML file through CSS property, the property is font-family

Final answer:

The CSS property that changes the font of an element is 'font-family'. It allows you to select a specific font for your HTML elements, and you can also set a fallback font. To use it, you type 'font-family:' followed by the name of your desired font in your CSS specification.

Explanation:

The CSS property that changes the font of an element is the font-family property. This property allows you to choose from thousands of fonts for the text content of your HTML elements. Here is an example of how you use the font-family property:

p { font-family: Arial, sans-serif;} In this example, 'p' refers to the HTML paragraph element. The font-family property here is set to 'Arial', and 'sans-serif' is the backup font in case 'Arial' is unavailable on the user's system.

Learn more about CSS font-family property here:

https://brainly.com/question/4110517

#SPJ11