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, the browser 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:[email protected]"
style="text-decoration:none">Mail!</a>
You'll find much more on Style Sheets (or CSS... Cascading Style Sheets) in CSS Tutor. But that's for another day. Remember, walk before run ;-)