css inline style hover, no underline link code example
Example 1: text underline hover css
a:hover {
text-decoration: underline;
}
Example 2: remove underline from a tag
<a style="text-decoration: none">my link</a>
a:hover {
text-decoration: underline;
}
<a style="text-decoration: none">my link</a>