EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The font-style property in CSS</title>
	<style type="text/css">
		@font-face {
		  src: url('https://mdn.mozillademos.org/files/16044/AmstelvarAlpha-VF.ttf');
		  font-family:'AmstelvarAlpha';
		  font-style: oblique 50deg;
		}
		
		
		.container {
		  max-height: 150px;
		  overflow: scroll;
		  font-style: oblique 50deg;
		}
		
		.sample {
		  font: 2rem 'AmstelvarAlpha', sans-serif;
		  color: red;
		  font-style: oblique 50deg;
		}
	</style>
</head>

<body>
	<div class="container">
		<p class="sample">...Study Tonight is the best platform to learn digital courses in a simplified way!</p>
	</div>
</body>

</html>