font-style.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: font-style Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<style type="text/css">
<!--
   .itals { font-style: italic }
-->
</style>
</head>

<body>
<div class="header"><h2>Abakada CSS Demo: font-style Attribute</h2></div>
<hr size=1 width=92%>

<center>

<h4>This example uses calls to an <i>embedded stylesheet</i> to dynamically set an element's <b>font-style</b> style attribute.</h4>

<p style="font-size: 13pt; font-weight: bold; font-family: arial; color: navy; cursor: hand"
   onmouseover="this.className='itals'"
   onmouseout="this.className=''">
      Move the mouse over to apply a style class that renders this text as italic. 
      Move the mouse out to restore. 
</p>

</center>

<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>