Font Family
//more than one font family is specified in a comma-separated list
p {
font-family: "Times New Roman", Times, serif;
}
The font family of a text is set with the font-family property.
Should hold several font names as a "fallback" system. If the browser does not support the first font, it tries the next font, and so on.