Root, el cambio de color en un link se hace a través de los estilos, tenés que cambiar los valores de default del tag "a", insertando entre HEAD Y /HEAD el siguiente código:
Código:
<style type="text/css">
<!--
a:active { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #993366; text-decoration: none; font-weight: bold}
a:hover { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #000000; font-weight: bold}
a:link { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #993366; text-decoration: none; font-weight: bold}
a:visited { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #993366; text-decoration: none; font-weight: bold}
-->
</style>
Esteejemplo te pondrá los links en color violeta, Arial 14px y bold sin decoración (subrayado, etc.) y cuando pasés el mouse por ellos se pondrán de color negro con la misma tipo de letra.
Luego en el BODY colocás tu link como siempre y listo, sin agregar nada al aherf, por ejemplo:
Código:
<a href="http://www.yahoo.es">Conectate a Yahoo España</a>
Espero que te sirva.
Suerte.
<div align="center"><img src="http://www.solutionsabc.com/firmabrce.gif" width="200" height="42">
</div>