Files
DevOps-App/index.html
T

40 lines
1018 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<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 <span class="highlight">élément de test</span> avec du style !</p>
<p>Bienvenue sur cette page de démonstration.</p>
</div>
</body>
</html>