how to change html link color in css code example
Example 1: text underline hover css
a:hover {
text-decoration: underline;
}
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 ---!>