Links Without Underlines

Although underlines help us to identify links on web pages, there are some instances where you may want to remove underlines from certain links. If you want to remove underlines from certain links, but not all links on a page, simply add 'STYLE="text-decoration: none' after the HREF tag. Example:

<A HREF="http://www.wintipsweb.us/" STYLE="text-decoration: none">WinTips Web</a>

To remove underlines from all links on your page insert this code between the <HEAD> and </HEAD> tags:

<style> <! --a {text-decoration: none} --> </style>

If you use a stylesheet for your site, add this code to your CSS file to remove all underlines:

A:link { text-decoration:none; }