CSS text-decoration: none; property is used to remove underline from hyperlink text.

Example

<html>
<head>
<style>
a{
 text-decoration:none;
}
</style>
</head>
<body>
<a href="#">Hello World</a>
</body>
</html>