Ajout des fichiers exemples HTML et CSS

This commit is contained in:
yann.lereuille 2025-01-14 15:15:08 +01:00
commit 4cc360f908
2 changed files with 23 additions and 0 deletions

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Hello there</title>
</head>
<body>
<h1>Quel titre !</h1>
<p>Bonjour les SIO :)</p>
</body>
</html>

10
style.css Normal file
View File

@ -0,0 +1,10 @@
body {
background-color: #6d6551;
}
h1 {
color: #c6d2db;
}
p {
color: #c9c0d1;
}