remove normal underline links css code example
Example 1: how to not underline links in css
a {
text-decoration: none;
}
Example 2: how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>