<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div {
width: 300px;
margin: auto;
border: 3px solid #4287f5;
}
h2,
h3 {
text-align: center;
color: #4287f5;
}
</style>
</head>
<body>
<h2>W3docs</h2>
<h3>Div centré horizontalement</h3>
<div>W3docs est un site web informatique, avec tutoriels et références lié au développemnent Web.</div>
</body>
</html>