HTML & CSS Snippets
Name:CSS Link Style
Description: Style your links using CSS.
Code below...
<style type="text/css"> <!-- /* This is the CSS code, edit anything to your likings */ /* Main Link Style */ a:link { text-decoration: none; color: #393939; } /* On Click Style */ a:visited { text-decoration: none; color: #393939; } /* On Mouseover Style */ a:hover { text-decoration: underline; color: #000000; } --> </style>