18
Aug
Learn how to remove underline from hyperlinks in page using CSS
If you want to remove underline from hyperlink, you can use the text-decoration property for the link to specify if you need an underline or not. If you set the text-decoration property to none, you can remove underlines from hyperlinks in our html page.
a:link, a:visited {
text-decoration: none;
}