Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Remove Underline from Link Using CSS</title> <style> a:link, a:visited, a:hover, a:active { text-decoration: none; } </style> </head> <body> <p><a href="https://www.tutorialrepublic.com/">Click Me</a></p> </body> </html>