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

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

<center>

<h4>This example uses inline event handlers<br>
   to dynamically set an object's <b>font</b> style attributes<br>
   in response to mouse events.</h4>

<p id="msg" onmouseover="this.style.font='italic 17pt serif'"
   onclick="this.style.font='bolder small-caps 14pt comic sans ms'"
   onmouseout="this.style.font='bold 13pt arial'">
      Move the mouse over or click on this text to change its <b>font</b> characteristics.<br>
      Move the mouse out to restore. 
</p>

</center>

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

</body>
</html>