<html>
<head>
<title>Abakada CSS Demo: color Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<div class="header"><h2>Abakada CSS Demo: <b>color</b> Property</h2></div>
<hr size=1 width=92%>
<center>
<h4>This example uses <i>inline event handlers</i> to change an object's text color.</h4>
<p style="font: bold 16pt 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>