The default link color is blue. How to remove the default link color of the html hyperlink tag ?
Simply add this in CSS,
CSS
a { color: inherit; text-decoration: none; }
that's it, done.