More Links Tricks

Here are some more tricks that I promised you. Here is a glowing link effect:
Go Back
This only works on Internet Explorer (4+)
You can change the color #00A0A0 to any color you want.
Here is the code:
<SPAN STYLE="position:relative; width:250; height:20; filter:glow(Color=#00A0A0,Strength=2)"> <a href="http://">TEXT HERE </a> </SPAN>

If you just want a hover color use this code:
<HEAD>
<STYLE TYPE="text/css">
<!-- a:hover{color:#ff0080;} -->
</STYLE>
</HEAD>
This also only works with IE4+

If you want an alt on your link text (like this) use this code:
<A HREF="http://" TITLE="alt here">


If you want your link to open into a new window use this code:
<a href="http://" target="new">TEXT</a>

If you want to link to a specific spot on a page use this code:
<A HREF="#sm">Sailor Moon</A>
<A HREF="#smerc">Sailor Mercury</A>
<A HREF="#sp">Sailor Pluto</A>
Then at the spot you want the link to link to put this code on:
<A NAME="sm"></A>
<A NAME="smerc"></A>
<A NAME="sp"></A>

If you want to describe your link in the status bar instead of showing the link URL like this one use this code:
<a href="index.html" OnMouseOver="self.status='Go to my homepage!'; return true" onmouseout="self.status=''; return true"></a>

Well, that took forever to do. I hope it was worthwhile. Go back