Enhance index.html with CSS styling and updated content for improved presentation and user experience.

This commit is contained in:
Rassaby Ludovic
2025-10-13 12:48:58 +04:00
parent 9239207a59
commit 2561545376
+26 -1
View File
@@ -4,11 +4,36 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page de Test</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
h1 {
color: #333;
text-align: center;
}
#test-element {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin: 20px 0;
}
.highlight {
color: #007bff;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Page de Test</h1>
<div id="test-element">
<p>Ceci est un élément de test</p>
<p>Ceci est un <span class="highlight">élément de test</span> avec du style !</p>
<p>Bienvenue sur cette page de démonstration.</p>
</div>
</body>
</html>