How do you display hyperlinks without an underline? css code example
Example 1: How do you display hyperlinks without an underline?
{
text-decoration:none;
}
Example 2: How do you display hyperlinks without an underline?
a {
text-decoration: none;
}