Code:
a.link1:link {
color: #333333;
text-decoration: underline;
}
a.link1:visited {
color: #333333;
text-decoration: underline;
}
a.link1:hover {
color: #333333;
text-decoration: none;
}
a.link2:link {
color: #ff0000;
text-decoration: none;
}
a.link2:visited {
color: #ff0000;
text-decoration: none;
}
a.link2:hover {
color: #ff0000;
text-decoration: underline;
}
Modify that as you like.. repeat that method for more link classes.. visit
www.tizag.com for more tutorials and help (that's where I learned how to assign hyperlink css in my stylesheets) and then assign the classes something like this:
For link1's properties:
Code:
<a class="link1" href="URL">
For link2's properties:
Code:
<a class="link2" href="URL">