css take blue link out code example
Example 1: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
Example 2: remove style from a tag
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}