From c544981aec814446a6966a4316dc0028a6569dab Mon Sep 17 00:00:00 2001 From: bendwit <184859846+BenDWit@users.noreply.github.com> Date: Tue, 24 Jun 2025 12:34:31 +0200 Subject: [PATCH] finished event flyer --- .../CSS/Event_flyer_page/index.html | 24 +++++++++++++++++++ .../CSS/Event_flyer_page/styles.css | 19 +++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 Certified_Full_Stack_Developer/CSS/Event_flyer_page/index.html create mode 100644 Certified_Full_Stack_Developer/CSS/Event_flyer_page/styles.css diff --git a/Certified_Full_Stack_Developer/CSS/Event_flyer_page/index.html b/Certified_Full_Stack_Developer/CSS/Event_flyer_page/index.html new file mode 100644 index 0000000..b4e52d6 --- /dev/null +++ b/Certified_Full_Stack_Developer/CSS/Event_flyer_page/index.html @@ -0,0 +1,24 @@ + + + + + + Build an Event Flyer Page + + + +
+ event image +

CTF

+
+
+
+
+

Fun

+
+
+

Competition

+
+
+ + diff --git a/Certified_Full_Stack_Developer/CSS/Event_flyer_page/styles.css b/Certified_Full_Stack_Developer/CSS/Event_flyer_page/styles.css new file mode 100644 index 0000000..4d34d15 --- /dev/null +++ b/Certified_Full_Stack_Developer/CSS/Event_flyer_page/styles.css @@ -0,0 +1,19 @@ +body { + background: darkgrey; + padding-top: 50px; + padding-bottom: 50px; + margin-left: auto; + margin-right: auto; + width: 10vw; + min-height: calc(100vh - 100px); + margin-top: 0; + margin-bottom:0; +} + +hr { + width: 100%; +} + +section { + width: 90%; +} \ No newline at end of file