Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.blue {
color: #1c87c9;
}
</style>
</head>
<body>
<h2>Exemple de la propriété color</h2>
<p>Quelque paragraphe.</p>
<p class="blue">Quelque paragraphe de couleur bleu.</p>
<p>Quelque paragraphe.</p>
</body>
</html>