CSS Font Variant
HTML
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<p>Sed feugiat sem eu lectus tincidunt tempus.</p>
</body>
CSS
p { font-variant: small-caps; }
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<p>Sed feugiat sem eu lectus tincidunt tempus.</p>
</body>
p { font-variant: small-caps; }