The font-family property represents the text of content in different styles. There are various type of font-family.
Example of Code
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
<style>
p {
font-family: Georgia, Garamond, serif;
}
</style>
</head>
<body>
<p>This text is rendered in either georgia, garamond, or the default serif font (depending on which font the user's system has).</p>
</body>
</html>
Output
Example This text is rendered in either georgia, garamond, or the default serif font (depending on which font the user's system has).
