This is a discussion on HTML Link Tips within the Web Design forums, part of the Web Designing & Development category; Make the links change to red when the mouse over Code: <HTML> <HEAD> <TITLE>Name of your page</TITLE> <STYLE type="text/css"> <!--A:hover ...
Make the links change to red when the mouse over
If you want to get rid of the underline in the links :Code:<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>Make an e-mail link with the subjet line preset:Code:<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>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.Code:<A HREF="mailto:[email protected]?Subject=subject of email">subject goes here</A>Code:<a href="#" onMouseOver="window.status='Your message here!'; return true">
Bookmarks