Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div {
background-color:rgb(25,25,112);
color: rgb(169,169,169);
padding: 22px;
}
</style>
</head>
<body>
<div>
<p>C'est un texte gris, et le fond et bleu</p>
</div>
<p style="color:rgb(25,25,112);"> C'est un texte bleu</p>
</body>
</html>