LINKS
by danferth
HTML
<a class="link">Regular Link</a><br />
<a class="visited">Visited Link</a><br />
<a class="hover">Hovered Link</a>
CSS
a{display:inline-block; margin:10px;}
/* these styles are for presentation of the link states they are NOT the styles in my stylesheet*/
a.link{
font-family: Verdana, Tahoma, Geneva, sans-serif;
font-size:.875em;
text-decoration:none;
color:#0676b3;
}
a.visited{
color:#666;
text-decoration:underline;
}
a.hover{
color:#fff;
background:#A5C2DB;
border-radius:0.1875em;
padding:0 0.1875em;
}