Path = Home : Webmaster Resources : HTML Design Tips : Customizing Link Styles
By default the link text is underlined, but if you want to, you can remove the underline of an individual link by adding the STYLE tag to your link HTML code.
<a href ="http://yoursite.com" style="text-decoration: none"> Example Link</a>
You can change the color of an individual link by adding a font tag in front of your linked text.
<a href ="http://yoursite.com"><font color="#FF33FF"> Example Link</font></A>
<a href="http://yoursite.com"><font size="4">Example Link</font></a>