The default link color is blue. How to remove the default link color of the html hyperlink tag ?
You have to use CSS. Here's an example of changing the default link color, when the link is just sitting there, when it's being hovered and when it's an active link.
CSS
a:link { color: red; } a:hover { color: blue; } a:active { color: green; }
Google