From e7e70770255441b6f521eb432872a24c30dc1579 Mon Sep 17 00:00:00 2001 From: Lluis Adan Date: Mon, 27 May 2024 20:12:50 +0200 Subject: [PATCH] Feat: Iteration 1 --- layout.css | 34 ++++++++++++++++++++++++++++++++++ layout.html | 23 +++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 layout.css create mode 100644 layout.html diff --git a/layout.css b/layout.css new file mode 100644 index 000000000..16cfba388 --- /dev/null +++ b/layout.css @@ -0,0 +1,34 @@ + +.lab { + min-height: 100vh; +} + +.navbar { + background: white; + height: 70px; +} + +.nav { + background: black; + height: 400px; +} + +.menu { + background: red; + height: 300px; +} + +.content { + background: white; + height: 800px; +} + +.foot { + background: black; + height: 300px; +} + +.footer { + background: grey; + height: 70px; +} \ No newline at end of file diff --git a/layout.html b/layout.html new file mode 100644 index 000000000..8ef8497ae --- /dev/null +++ b/layout.html @@ -0,0 +1,23 @@ + + + + + + LAB | Bootstrap Cloning Revera + + + + +
+
+ + + +
content
+
foot
+ +
+
+ + \ No newline at end of file