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

<style type="text/css">
<!--
   .serif { font-family: serif }
   .comic { font-family: comic sans ms }
   .arial { font-family: arial }
-->
</style>
</head>

<body>
<!-- #include virtual="~/shared/top.inc" -->

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

<center>

<h5>This example uses calls to an embedded stylesheet to dynamically set the font family of an element's text.</h5>

<p style="font: bold 13pt; color: navy; cursor: hand"
   onmouseover="this.className='serif'"
   onclick="this.className='comic'"
   ondblclick="this.className='arial'"
   onmouseout="this.className=''">
      Move the mouse over to apply a style class that renders this text in Serif. 
      Click to make all letters Comic. Double-click to see the text in Arial. 
      Move the mouse out to restore. 
</p>

</center>

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

</body>
</html>