When designing your web pages, there may be a time when you will want to remove the underline of an individual text hyperlink. Although it is always best to leave hyperlinks at their default settings, as this is what your visitors will be used to, this HTML tip will assist you removing the link underline.
To remove a link underline, add STYLE="TEXT-DECORATION: NONE" to your link code:
Code:
<A HREF="http://www.discussionheaven.com" STYLE="TEXT-DECORATION: NONE">Your Link</A>
Although the above ...