Remove Underline Html

remove underline html
<a style="text-decoration: none;"></a>
remove underline from a tag
<a style="text-decoration: none">my link</a>
remove underline from HTML

a {
text-decoration: none;
}
how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>

Leave a Comment