|
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:
<STYLE
TYPE=”text/css”>
<!—
.text
{A:link, visited, active:text-decoration:none
}
->>
</STYLE>
To remove
the underlining from an individual link, the code is
applied directly to the <A> tag as follows.
Tired
of underlined links? Not anymore!
<a href = "www.web-mantra.com"
target="F1" class="text">Visit
the coolest site on the net </a>
|