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; +} + + + +