css remove color link code example
Example: how to remove link blue color from a tag using css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}