css hyperlink without underline code example
Example 1: remove underline html
<a style="text-decoration: none;"></a>
Example 2: remove underline from a tag
<a style="text-decoration: none">my link</a>
Example 3: How do you display hyperlinks without an underline?
{
text-decoration:none;
}
Example 4: How do you display hyperlinks without an underline?
a {
text-decoration: none;
}