Monday, May 24, 2010

In basic HTML coding, how do i take off the default underline under a link?

You can use HTML spiced up with a little inline CSS:


%26lt;a href="apage.html" style="text-decoration: none;"%26gt;





Just an aside on those underlines - they are what the average internet user look for to find links - and by turning them off, you'll have most of your visitors not realizing you have links.

In basic HTML coding, how do i take off the default underline under a link?
%26lt;a href="apage.html" style="text-decoration: none;"%26gt;
Reply:hi,


%26lt;A HREF="link.html"%26gt;This is a normal link, it's underlined%26lt;/A%26gt;


%26lt;A STYLE="text-decoration:none" HREF="link.html"%26gt;


This is an unusual link, it has no underline%26lt;/A%26gt;


No comments:

Post a Comment