Et hop... un petit exemple.
(Vive les CSS)
<style type="text/css">
<!--
a.type1 { color: red; }
a.type1:hover { color: yellow;}
a.type2 { color: blue; }
a.type2:hover { color: green; }
-->
</style>
<a href="toto.html" class="type1">lien 1</a> <br>
<a href="titi.html" class="type2">lien 2</a>


