A css

!NOTE pLACE IN THIS ORDER TO KEEP HOVER WORKING ON VISITED LINKS
#steve a:link { font-family: Arial, Helvetica, sans-serif;    font-size: 12px; font-weight: bold;    color: #FFFFFF;    text-decoration: underline;    text-align: center;}
#steve a:visited { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold;color: yellow;    text-decoration: underline;    text-align: center;}
#steve a:hover { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold;color: #000000;    text-decoration: underline;    text-align: center;}

a:link { color: rgb(0, 0, 153) }  /* for unvisited links */
a:visited { color: rgb(153, 0, 153) } /* for visited links */
a:active { color: rgb(255, 0, 102) } /* when link is clicked */
a:hover { color: rgb(0, 96, 255) } /* when mouse is over link */
********
<a href="http://http://www.time.gov/" class="link">Example of class="link" Link</a>
(font : 12px Verdana, Geneva, Arial, Helvetica, sans-serif
   a.link:link {text-decoration : underline; color : #996600
   a.link:hover {color : #999999; text-decoration : none
   a.link:visited {text-decoration: underline; color : #333333
   a.link:visited:hover {text-decoration: none; color : #666666)
*************************
A:link {Text-decoration:none;color:red}
A:visited {Text-decoration:none;color:red}
A:hover {Text-decoration:underline;color:olive}
A:active {Text-decoration:none;color:gray}
UL {margin-left:15px;margin-bottom:0in;margin-top:0in;}
LI {margin:1px 1px 1px 1px}
<A style="color : blue">

Sometimes you may want to show hypertext links without them being underlined. You can do this by setting the text-decoration property to none, for example:
  a.plain { text-decoration: none }
Which would suppress underlining for a link such as:
This is <a class="plain" href="what.html">not underlined</a>
Print #3, "<Style>"
    Print #3, "A:link {Text-decoration:none;color:" + txColor(0).Text + "}"
    Print #3, "A:visited {Text-decoration:none;color:" + txColor(0).Text + "}"
    Print #3, "A:hover {Text-decoration:underline;color:" + txColor(1).Text + "}"
    Print #3, "A:active {Text-decoration:none;color:" + txColor(2).Text + "}"
    Print #3, "UL {margin-left:15px;margin-bottom:0in;margin-top:0in;}"
    Print #3, "LI {margin:1px 1px 1px 1px}"
    Print #3, "</Style>"