More then one link color?

Can I set up my CSS script so I can use more then one style of link color?

This is what I have in my CSS script.



a:link {
color: #006699;
text-decoration: none
}

a:whitelink {
color: #FFFFFF;
text-decoration: none



Would this work? If so, how would I set up my HTML?
This is what I got, but its not working.


<p class="six"><a class="whitelink" href=http://www.webdeveloper.com/forum/archive/index.php/"../index.html">Back to Home</a></p>


Thanks in advance...Peep this. (<!-- m --><a class="postlink" href="http://www.w3schools.com/css/css_pseudo_classes.asp">http://www.w3schools.com/css/css_pseudo_classes.asp</a><!-- m -->)Perfect! Thanks!You're welcome. :)
 
Back
Top