remove underline for a code example
Example 1: remove underline from hyperlink
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove underline html
<a style="text-decoration: none;"></a>
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
<a style="text-decoration: none;"></a>