Current File : /home/lecoinf/index.html |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance en cours</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
.maintenance-message {
max-width: 600px;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.maintenance-message h1 {
font-size: 2rem;
margin-bottom: 10px;
}
.maintenance-message p {
font-size: 1rem;
}
</style>
</head>
<body>
<div class="maintenance-message">
<h1>Maintenance en cours</h1>
<p>Nous effectuons actuellement des travaux de maintenance sur notre site. Veuillez revenir plus tard.</p>
<p>Merci de votre patience et de votre compréhension.</p>
</div>
</body>
</html>