CSS:
a.links
{
color: blue;
font-size: 14pt;
text-decoration: underline;
}
a.links.visited
{
color: red;
font-size: 14pt;
text-decoration: underline;
}
a.links.active
{
color: blue;
font-size: 14pt;
text-decoration: underline;
}
a.links.hover
{
color: green;
font-size: 14pt;
text-decoration: underline;
}
HTML:
<a href="http://anyurl.com" class="links">
I wrote most of it for you, now make sure your now how it works and how to do it yourself. CSS can be a real pain if you don't fully understand them.
Go here to learn more
http://www.w3schools.com