<html>
<head>
<style>
/* Specifies that font kerning is applied */
.ex1 { font-kerning: normal; }
/* Specifies that font kerning is not applied */
.ex2 { font-kerning: none; }
</style>
</head>
<body>
<h1>The font-kerning Property</h1>
<div class="ex1">"STAY 'AWAY'"</div>
<div class="ex2">"STAY 'AWAY'"</div>
</body>
</html>