EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The initial-letter property in CSS</title>
	<style type="text/css">
		.normal {
		  -webkit-initial-letter: 3.0;
		  initial-letter: 3.0;
		  color: red;
		}
		
		.onefive {
		  -webkit-initial-letter: 3.0 2;
		  initial-letter: 3.0 2;
		  color: green;
		}
		
		.three {
		  -webkit-initial-letter: inherit;
		  initial-letter: inherit;
		  color: deeppink;
		}
	</style>
</head>

<body>
	<p class="normal">Study Tonight</p>
	<p class="onefive">Is the best place to learn digital courses</p>
	<p class="three">in a simplified way</p>
</body>

</html>