HTML Link Tips

A Few Link Tips


Think Green! ;)

Make the links change to red when the mouse hoovers over 
Copy and paste the red text in your head  tags


<HTML>

<HEAD>
<TITLE>Name of your page</TITLE>

<STYLE type="text/css">
<!--A:hover {color: #FF0000;}//-->
</STYLE>
<STYLE type="text/css">
<!--A.noline {text-decoration: none};//-->
</STYLE>

</HEAD>

 

If you want to get rid of the underline in the links :
Copy and paste the red text in your head  tags

<HTML>

<HEAD>
<TITLE>Name of your page</TITLE>

<style type="text/css">
<!--
A:link {text-decoration: none} A:visited {text-decoration: none}
A:active {text-decoration: none}
-->
</style>

</HEAD>

 

Make an e-mail link with the subjet line preset:

<A HREF="mailto:yourname@youraddress.com?Subject=subject of email">subject goes here</A>

 



When you run your Cursor over a Specific link or Banner, Instead of a URL being displayed at the bottom of my Browser, There is a little message that is shown. For example "Click here for my links page" etc. I thought that was pretty cool and was just wondering if you Could tell me how to do this. I would be very Grateful. Thanks For reading this and I love your Site. It's helped me learn some Cool tricks!! 
Jay


Hi Jay, 
thats an easy one , just make your links like the following example: 

<a href="http://www.yoursitesnamehere.com" onMouseOver="window.status='Your message here!'; return true"> 

now just replace the red part with your link and message.