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