two link color/styles on one page?

liunx

Guest
i know how to set the colors of my links:

a:link {
color: #333333;
}
a:visited {
color: #FFFFFF;
}
a:hover {
color: #CCCCCC;
background-color: #333333;
text-decoration: none;
}
a:active {
color: #333333;
}

but is it possible to have two different link colors on one page?

so for instance one set of links would be red and blue when rolled over and another set would be green and pink when rolled over<style type="text/css">
<!--
a.ext:link {
color: #00f;
}
a.int:link {
color: #f00;
}
-->
</style>

</head>
<body>
<a class="ext" href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.my.com">www.my.com</a>
<a class="int" href=http://www.webdeveloper.com/forum/archive/index.php/"page1.html">page1</a>
</body>

Same idea for the other pseudo-class selectors
 
Back
Top