From 0c6e356a5301537071b15e732d9a634efb13026f Mon Sep 17 00:00:00 2001 From: Renarde Date: Tue, 21 Nov 2023 20:09:33 +0100 Subject: [PATCH] Initial commit --- index.html | 30 ++++++++++++++++++++++++++++++ script.js | 5 +++++ style.css | 25 +++++++++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 index.html create mode 100644 script.js create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..09d46e2 --- /dev/null +++ b/index.html @@ -0,0 +1,30 @@ + + + + + Acceuil de la tanière solidaire + + + + +
+

La Tanière Solidaire

+ +
+ + +

Les services :

+ + + + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..028a91f --- /dev/null +++ b/script.js @@ -0,0 +1,5 @@ +"use strict"; + +window.addEventListener("DOMContentLoaded",function(){ + console.log("Loaded") +}) \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..ac9f550 --- /dev/null +++ b/style.css @@ -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; +} + + + +