<!DOCTYPE html>
<html>
<head>
<title>CSS Example</title>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:arial, verdana, sans-serif;
font-size:12px;}
p {font-variant:normal;}
span.smallcaps {font-variant:small-caps;}
</style>
</head>
<body>
<h1>font-variant Property</h1>
<p class="one">This is a normal font, but then <span class="smallcaps">there are some small caps</span> in the middle.</p>
</body>
</html>