remove anchor tag color code example
Example 1: remove anchor tag color
a { color: inherit; }
Example 2: remove anchor tag color
a {
color: #0060B6;
text-decoration: none;
}
a:hover {
color:#00A0C6;
text-decoration:none;
cursor:pointer;
}