how to change link color different colors in css code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: html link color
<a href="Link Here" style="color: Color Here"><b>Link Name</b></a> <!--- You dont need the bold tags btw ---!>