<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div {
background-color: blue;
color: #d5dce8;
padding: 22px;
}
</style>
</head>
<body>
<div>
<p>C'est un texte gris, et le fond est bleu</p>
</div>
<p style="color:blue;"> C'est un texte bleu</p>
</body>
</html>