<!DOCTYPE html>
<html lang="fr">
<head>
<meta
charset="UTF-8">
<meta
name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Bienvenue sur mon NAS</title>
<style>
body {
font-family: Arial, sans-serif;
display:
flex;
justify-content: center;
align-items: center;
height:
100vh;
margin: 0;
background-color: #f0f0f0;
}
.container {
text-align:
center;
padding:
20px;
background-color: white;
border-radius: 10px;
box-shadow:
0 0 10px rgba(0,0,0,0.1);
}
h1 {
color:
#333;
}
</style>
</head>
<body>
<div
class="container">
<h1>Bonjour !</h1>
<p>Bienvenue sur la page d'accueil de mon NAS Synology.</p>
</div>
</body>
</html>