<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.link:hover {
cursor: default;
}
</style>
</head>
<body>
<h4>Passez la souris sur l'hyperlien pour voir comment le "pointer" devient "default":</h4>
<p><a href="https://fr.w3docs.com">W3docs</a> lien avec le type initial "pointer" .</p>
<p><a class="link" href="https://fr.w3docs.com">W3docs</a> lien avec le type de curseur "default" modifié.</p>
</body>
</html>