<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div {
text-decoration-line: overline;
text-decoration-style: dashed;
text-decoration-color: #1c87c9;
}
</style>
</head>
<body>
<h2>Exemple de la propriété text-decoration-style</h2>
<div>Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.</div>
</body>
</html>