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