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>
<div class="header"><h2>Abakada CSS Demo: <b>color</b> Attribute</h2></div>
<hr size=1 width=92%>

<center>

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

<p style="font: bold 16pt 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>