Cita:
Iniciado por ssi
En el body
<body alink="color" vlink="color" link="color">
En donde te indica el color del link visitado, el color del link y el color del link al pasar el mouse por encina.
estas propiedades están fuera de uso, la misma W3C nos dice
Cita: Compatibility Notes
The vlink attribute of <body> is deprecated, and is not supported in HTML 4.01 Strict / XHTML 1.0 Strict DTD.
Use CSS instead.
CSS syntax (in the <head> section): <style>a:visited {color: #FF0000}</style>
CSS Example: Set the color of a visited link
In our CSS tutorial you can find more details about the :visited pseudo-class.
es mejor incluir esto en tu hoja de estilos como indica el compañero
angelAparicio
a:link,a:active,a:visited,a:hover {color: blue;}
o
a{color: blue;}