Update index.html to enhance the page title and content, adding styling for improved layout and user experience.
This commit is contained in:
+28
-3
@@ -3,12 +3,37 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Page de Test</title>
|
<title>Bienvenue sur DevOps-App</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 50px auto;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
color: #2c3e50;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#test-element {
|
||||||
|
background-color: white;
|
||||||
|
padding: 30px;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
color: #555;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Page de Test</h1>
|
<h1>Application DevOps - Environnement de Développement</h1>
|
||||||
<div id="test-element">
|
<div id="test-element">
|
||||||
<p>Ceci est un élément de test</p>
|
<h2>Bienvenue dans votre espace de travail</h2>
|
||||||
|
<p>Cette application DevOps vous permet de gérer et de déployer vos projets efficacement.</p>
|
||||||
|
<p>Explorez les fonctionnalités disponibles pour optimiser votre flux de travail de développement et de déploiement.</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user