EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The font-variant-caps property in CSS</title>
	<style type="text/css">
		.small-caps {
		  font-variant-caps: unicase;
		  font-style: italic;
		  color: red;
		}
		.normal {
		  font-variant-caps: unicase;
		  font-style: italic;
		  color: purple;
		}
	</style>
</head>

<body>
	<p class="small-caps">Study Tonight rocks, unicase caps!</p>
	<p class="normal">Study Tonight rocks, unicase caps!</p>
</body>

</html>