REMOVING UNDERLINE FROM LINKS!
You may want to remove the underline that shows under all links.
Place one of the two codes shown below, under the <HTML> tag:
Copy and paste one of the codes and do not change the spacing.<style type="text/css">
<!--
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
-->
</style>
**OR**
<style type="text/css">
<!--
A:link, A:visited, A:active {text-decoration: none}
-->
</style>
If you want to remove the underline from a specific link:
<A HREF="mailto:mrknow@tampabay.rr.com" STYLE="text-decoration:none">Mail!</A>
That code would make it look like this when inserted: Mail!