FAQ: How can I get rid of the underline in my links?
A: Well, technically that can't be done with HTML. But, it can using Style Sheets. If you put the following between the HEAD tags of your document, any browser supporting Style Sheets should render all the links on a page without an underline...
<STYLE TYPE="text/css"><!--
a:link, a:visited, a:active {text-decoration:none}
--></STYLE>
That's just dandy, but what if I just want to get rid of the underline on only one or two links?
You can use a STYLE suggestion within the link itself...
<A HREF="mailto:forrest@bubbagump.com" STYLE="text-decoration:none">Mail!</A>
|