how to remove an underline code example
Example 1: remove underline from link css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: underlive coming uner anchor tag after clicking
a, a:hover, a:active, a:visited, a:focus {
text-decoration:none;
}