<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
.color{
color: hsl(89, 43%, 51%);
}
</style>
</head>
<body>
<h2>Ein Beispiel für die Eigenschaft color</h2>
<p>Zum Beispiel ist das ein Absatz.</p>
<p class="color">Das ist ein Absatz mit einem HSL-Farbenwert.</p>
<p>Zum Beispiel ist das ein Absatz.</p>
</body>
</html>