remove a tag underline code example
Example 1: how to remove all defualt underline in css
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
Example 2: remove underline html
<a style="text-decoration: none;"></a>
Example 3: how to remove underline from link in html
<body>
<h2>About</h2>
<p>
Our <a href="" style="text-decoration: none;">Team</a>
</p>
</body>
Example 4: remove underline anchor tag
{
text-decoration: none;
}
Example 5: remove underline from a tag
<a style="text-decoration: none">my link</a>
Example 6: how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>