a underline css remove 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: remove underline from a tag
<a style="text-decoration: none">my link</a>