<html>
<head>
<style>
div.ex1 {
pointer-events: none;
}
div.ex2 {
pointer-events: auto;
}
</style>
</head>
<body>
<h1>The pointer-events Property</h1>
<p>Move over the links below to see if the react on pointer events.</p>
<h2>pointer-events: none:</h2>
<div class="ex1">Go to <a href="https://www.w3schools.com/html">HTML Tutorial</a></div>
<h2>pointer-events: auto (default):</h2>
<div class="ex2">Go to <a href="https://www.w3schools.com/css">CSS Tutorial</a></div>
</body>
</html>