Question 8 How do you display hyperlinks without an underline? 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;
}