You would use style="color:black;" if you want to inline the code. Something like <span style="color:black;">....</span>
If you want to have all <a> content show in black, in the relevant CSS stylesheet, you could add:
Code:
a {
color: black;
}
or color: #000000; if you want to be a bit obscure.