How to remove the underline from linked text
To remove a link underline, add style=”text-decoration:none” to your link code:
<a href=”http://www.yourdomain.com” style=”text-decoration:none”>Your Link</a>
OR
<style>
<!--
a {text-decoration:none}
–>
</style>