Hidden Link
Platform: Javascript
Published Nov 05, 2009
Updated Nov 14, 2009
put this where you put html
replace 'background' with the background color of your site,
replace 'link' with the link you want it to go to, replace 'cmts' with the color you want the text to be when you mouse over, and replace 'text' with some words ;)
example:
<style type="text/css">
a {color:background}
a {font-size:30px}
a {text-decoration:none}
a {font-family:"Arial Black"}
</style>
<html>
<body>
<a href="link" onMouseOver="this.style.color='cmts'" onMouseOut="this.style.color='white'">text<a>
</body>
</html>