a tag css remove underline code example
Example 1: remove underline html
<a style="text-decoration: none;"></a>
Example 2: remove underline from a tag
<a style="text-decoration: none">my link</a>
Example 3: underlive coming uner anchor tag after clicking
a, a:hover, a:active, a:visited, a:focus {
text-decoration:none;
}