hide link styles in html code example
Example 1: how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Example 2: How do you display hyperlinks without an underline?
a {
text-decoration: none;
}