remove text decoration on a tag code example
Example 1: How do you display hyperlinks without an underline?
a {
text-decoration: none;
}
Example 2: remove underline in anchor tag
text-decoration:none;
a {
text-decoration: none;
}
text-decoration:none;