<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.dotted {
border-style: dotted;
border-color: #1c87c9;
padding: 5px;
}
</style>
</head>
<body>
<div class="dotted"> Exemple de la bordure bleu en pointillé (dotted).</div>
</body>
</html>