+ 9
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p class="font"> Hello </p>
<p> Hello </p>
</body>
</html>
CSS:
.font {
font-family: monospace;
}
This changes the font of tags with the class "font" to monospace.