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