Sizzling HTML Jalfrezi's Tip of the Day 
  - Removing underlining from links -  

To remove underlining from links, we have to use style sheet technology. This is currently supported by Microsoft Internet Explorer 3 and Netscape Navigator 4 upwards. To remove underlining from all the links on your page, include the following code in the <HEAD> of your document:

example of code

<STYLE TYPE="text/css">
<!--
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
-->
</STYLE>

To remove the underlining from an individual link, the code is similar, but applied directly to the <A> tag as follows.

example of code

Visit the <A HREF="mclaren.htm" TARGET="F1" STYLE="text-decoration: none">McLaren F1 Resource</A> to experience the world's fastest car.

how it renders

Visit the McLaren F1 Resource to experience the world's fastest car.

For more information, see Jalfrezi's section on style sheets.


previous tips of the day