To remove underline from hyperlink you will need to use style in your HTML. You can use one of the following methods to remove underline from Hyperlink:
[1] Using CSS:
- If you are using CSS, you will just need to add following code in your CSS:
a {
text-decoration: none;
}
[2] Using style tag in HTML:
- If you do not want to use CSS then you can accomplish this using following Way:
<a href="http://forums.webhostingdiscussion.net/" style="text-decoration:none">Web Hosting Talk</a>
Regards,
Kailash