anchor tag not underlined code example
Example 1: remove underline from link css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: How do you display hyperlinks without an underline?
a {
text-decoration: none;
}