how to remove color and under from anchor tag code example
Example 1: remove style from a tag
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}
Example 2: remove style from a tag
a { color: inherit; }