<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.link:hover {
cursor: default;
}
</style>
</head>
<body>
<h4>
Hover over the hyperlink to see how the "pointer" changes to "default":
</h4>
<p>
<a href="https://www.w3docs.com">W3docs</a>
link with the initial "pointer" type.
</p>
<p>
<a class="link" href="https://www.w3docs.com">W3docs</a>
link with the changed "default" cursor type.
</p>
</body>
</html>