Links with no Underline

Now you remove the pesky underline from all your links!

Example:

This is a link which is not underlined.

Copy & Paste the following code in the HEAD section of your webpage.


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

If you have disabled the underline, you can give the visitor a hint that a given text is a link, by adding an underline on mouse over.

Example:

This link will be underlined on mouse over.

Copy & Paste the following code in the HEAD section of your webpage.


 <style type="text/css">
 <!--
 A:hover {text-decoration: underline}
 -->
 </style>