css delete link default style code example
Example 1: remove styling from a tag
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove style from a tag
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}