Google for CSS references. This is off the first page I found for a quick reference. Shamelessley ripped from
http://www.webmasterkorner.com/css.html
Replace the [ with <...] with a >...
To remove the underline from a link use this tag on your HTML document.
[a href="http://www.webmasterkorner.com" style="text-decoration: none"]Home Page[/a]
To remove the underline on all links on your document add this code within your [head] and [/head] tags of your HTML document.
[Style][!-- A{text-decoration:none} --][/Style]
"Or you could use this code within your [head] and [/head] tags of your HTML document.
[Style type="text/css"][!--
A:link{color:blue;text-decoration:none}
A:visited{color: purple;text-decoration:none}
A:active{color:hotpink;text-decoration:none}
A:hover{color:hotpink;text-decoration:none}
--][/Style]
To remove the underline using an external CSS document use the code:
a:link { color: blue; text-decoration:none; background-color: transparent; }
a:visited { color: purple; text-decoration:none; background-color: transparent; }
a:active { color: hotpink; text-decoration:none; background-color: transparent; }
a:hover { color: hotpink; text-decoration:none; background-color: transparent; }