FONT-FAMILY Property In CSS
font-family Property in CSS
font-family property Declares the name of the font to be used. Previously set in HTML via the face attribute in a <font> tag.
Possible Value:
Valid font family names or generic family names, i.e. Arial, Verdana, sans-serif, "Times New Roman", Times, serif, etc. Font family names can be separated by a comma in the same declaration to allow additional and/or generic family names to be used if the prefereed font is unable to be displayed.
Examplediv { font-family:Arial; }
div { font-family:Arial, Helvetica, sans-serif; }