Initial commit

This commit is contained in:
Renarde 2023-11-21 20:09:33 +01:00
parent c8e629adfc
commit 0c6e356a53
3 changed files with 60 additions and 0 deletions

30
index.html Normal file
View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Acceuil de la tanière solidaire</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div class="Header">
<h1>La Tanière Solidaire</h1>
<input type="checkbox" id="darkMode" name="darkMode">
</div>
<h2>Les services :</h2>
<ul>
<li>
<div class="icon">
</div>
</li>
<li>OwO</li>
<li>OwO</li>
<li>OwO</li>
</ul>
</body>
</html>

5
script.js Normal file
View file

@ -0,0 +1,5 @@
"use strict";
window.addEventListener("DOMContentLoaded",function(){
console.log("Loaded")
})

25
style.css Normal file
View file

@ -0,0 +1,25 @@
:root {
background-color: white;
}
body {
display: flex;
flex-direction: column;
}
.Header {
display: flex;
flex-direction: row;
}
h1 {
align-self: center;
}
input {
align-self: flex-end;
}