css don't underline link 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;
}
Example 3: remove underline anchor tag
{
text-decoration: none;
}
Example 4: remove underline from a tag
<a style="text-decoration: none">my link</a>