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

<style type="text/css">
<!--
   .color1 { color: darkgreen }
   .color2 { color: maroon }
-->
</style>
</head>

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

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

<center>

<h5>This example uses calls to an embedded stylesheet to change an element's text color.</h5>

<p style="font: bold 13pt arial; cursor: hand"
   onmouseover="this.className='color1'"
   onclick="this.className='color2'"
   onmouseout="this.className=''">
      Move the mouse over the text to apply a style class that changes 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>