<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
</style>
</head>
<body>
<a> Quelque lien.</a>
</body>
</html>