how to remove underline on hover css code example
Example 1: remove underline html
<a style="text-decoration: none;"></a>
Example 2: remove underline hover css
a:hover {
text-decoration: none;
}
<a style="text-decoration: none;"></a>
a:hover {
text-decoration: none;
}