EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The letter-spacing property in CSS</title>
	<style type="text/css">
		.normal   { 
			letter-spacing: 1px; 
		color: red;
		font-weight: 20px;
	}
	</style>
</head>

<body>
	<p class="normal">Study Tonight</p>

</html>