Link Changing Color While Mouse Hovering Over It

If you have a list of several links on your web site, for your visitors it's hard to know if they are about to click the right link. Many of them will erroneously click the wrong link but notice it not before they are there where they never wanted to go to. (Or do you think: "That's exactly what some webmasters are aiming at with their ORDER page!" ?)

You can make your web site much more "inviting". Simply place something like the following code between <HEAD> and </HEAD> of your web site:

                             <STYLE>
                             <!--
                             A:active { color: #...; text-decoration; }
                             A:hover  { color: #...; text-decoration: none; }
                             //-->
                             </STYLE>
Code the links as usual:

                             <A HREF="..."> ... </A>

Now, when a visitor moves the cursor over any of the links in your link list, he gets immediate feedback as to which link is about to be clicked. The link with the mouse hovering it is changing color.