This is a bit of CSS code so you can have links with different color schemes on the same page.
<!– Begin Code –>
<html>
<head>
<meta http-equiv=”content-type” content=”text/html;charset=iso-8859-1″>
<title>CSS two color link page</title>
<style type=”text/css” media=”screen”>
<!–
a:link { color: blue }
a:visited { color: blue }
a:hover { color: purple }
a:active { color: red }
a.linkset2:link { color: purple }
a.linkset2:visited { color: purple }
a.linkset2:hover { color: olive }
a.linkset2:active { color: red }
–>
</style>
</head>
<body bgcolor=”#ffffff”>
<p><a href=”#”>Link 1</a></p>
<p></p>
<p><a href=”#” class=”Linkset2″>Link 2</a></p>
</body>
</html>
<!– End Code –>
