Appearance:
font-variant: <value>
Possible Values:
normal | SMALL-CAPS
Initial Value:
normal
Applies to:
All elements
Inherited:
Yes
<html>
<head>
<style>
<!--
SPAN { font-variant: small-caps }
-->
</style>
</head>
<body>
<SPAN>This is the text you want to display</SPAN>
</body>
</html>
This is the text you want to display
or with in-line code<SPAN style=" font-variant: small-caps">This is the text you want to display</SPAN>
would displayThis is the text you want to display