The following code can be used in the <HEAD> tag of an HTML document for automatic mouseover effects on all links on the page. The styles 'a' and 'a:visited' are used for compatibility with Internet Explorer 3.0.
<STYLE>
<!--
a {color:blue;}
a:visited {color:purple;}
a:hover {color:red;}
-->
</STYLE>
The comment tags allow browsers that don't support the hover effect to ignore this code.
Maheshwar D.