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

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

<div class="header"><h2>Abakada CSS Demo: <span class="hilite">color</span> Property</h2></div>
<hr size=1 width=92%>

<center>

<h5>This example uses inline event handlers to change an object's text color.</h5>

<p style="font: bold 13pt arial; cursor: hand"
   onmouseover="this.style.color='#997'"
   onclick="this.style.color='#687'"
   onmouseout="this.style.color=''">
      Move the mouse over the text to change its color.<br>
      Click on the text to change to another color.<br>
      Move the mouse out to restore color.
</p>

</center>

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

</body>
</html>