Hightlighted Link

This trick will highlight your text links, when the mouse passes over it.

Example:

This link will be highlighted when the mouse passes over it.

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


 <style type="text/css">
 <!--
 A:hover {background-color: orange}
 -->
 </style>

The link can also be highlighted at all times. Use the following code for this effect.

Example:

This link is highlighted

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


 <style type="text/css">
 <!-- 
 A:link {background-color: orange} 
 --> 
 </style>