Simple example that illustrates the use of the classes CSS.
<HTML>
<HEAD><TITLE>titolo</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<STYLE type=text/css>
.blue {
CURSOR: hand; COLOR: blue
}
.red {
CURSOR: help; COLOR: red
}
</STYLE>
<BODY>
<H2 onmouseover="this.className = 'blue';"
onmouseout="this.className = '';">Moving the mouse over
THIS<BR>point text becomes blu..... </H2>
<H2 onmouseover="this.className = 'red';" onmouseout="this.className
= '';">...
HERE, instead, becomes red</H2>
</BODY></HTML>
![]()
![]()