link color in css code example
Example 1: how to remove link blue color from a tag using css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}