How To Remove Underline From Hyperlink
There are several ways to remove the hyperlink underline. This page shows how to do this by adding the style attribute to the regular hyperlink code, adding the text-decoration property and giving the text-decoration property a value which in this case is none.
Remove Hyperlink Underline Code
The only thing you need to change with this code is the href attribute value to your own URL.
Code
<a href="remove-hyperlink-underline.php" style="text-decoration: none">remove hyperlink underline</a>
Output
remove hyperlink underline
More Hyperlink Codes