The default link color is blue. How to remove the default link color of the html hyperlink tag ?
This will work
a:hover, a:focus, a:active { outline: none; }
What this does is removes the outline for all the three pseudo-classes.