<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
p {
text-decoration-line: underline;
text-decoration-color: #666;
text-decoration-style: wavy;
}
s {
text-decoration-line: line-through;
text-decoration-color: #c91010;
}
</style>
</head>
<body>
<h2>Exemple de la propriété text-decoration-color </h2>
<p>Lorem ipsum est <s> simplement du faux </s> texte...</p>
</body>
</html>