<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div {
background-color: #8ebf42;
color: #ffffff;
width: 300px;
height: 300px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
padding: 20px;
line-height: 30px;
}
h2,
h3 {
text-align: center;
color: #4287f5;
}
</style>
</head>
<body>
<h2>W3docs</h2>
<h3>Div centré horizontalement</h3>
<main>
<div>W3docs est un site web informatique, avec tutoriels et références lié au développemnent Web.</div>
</main>
</body>
</html>