EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The font-feature settings property in CSS</title>
	<style type="text/css">
		p { 
			color: green;
			padding: 5px;
			font-feature-settings: "swsh" 2;
		 }
	</style>
</head>

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

</html>