DISABLE LINK USING CSS
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
    .disabled {
	  pointer-events: none;  
      color: grey;
      text-decoration: none;      
	}
	
</style>
</head>
<body>
    <h2>Disable  a link using CSS </h2>
    <p> The links will not work as it has been disabled</p>
	<a href="https://www.studytonight.com/" class="disabled"> Click Here</a>
	<p> The active link </p>
	<a href="https://www.studytonight.com/" class="active"> Click Here </a>
</body>
</html>