how to take the underline off a link html code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove underline from hyperlink
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}