PDA

View Full Version : how to remove hyperlink line in html give me few methods?


kajoo
11-15-2007, 06:39 AM
to remove underlines of hyperlink in html by any method

Julio M
11-15-2007, 06:40 AM
Paste this into a .html file and open it with your browser.

<style>
a {
text-decoration:none;
}
</style>
<html>
<a href="yourpage.asp">Link with no underline decoration</a>
</html>