EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The font-family property in CSS</title>
	<style type="text/css">
		p { 
			font-family: monospace;
			color: rebeccapurple;
			padding: 5px;
		 }
	</style>
</head>

<body>
	<p>Simplified Programming Education Enjoy the #rightway to learn coding.</p>
</body>

</html>