From 47b254e24ca0b9bbcbfb52059110d694aa1fe21c Mon Sep 17 00:00:00 2001 From: LeoTurlock Date: Thu, 25 Apr 2024 07:36:33 +0200 Subject: [PATCH] Initial Commit --- index.html | 22 ++++++++++++++++++++++ stylesheet.css | 21 +++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 index.html create mode 100644 stylesheet.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..17813c9 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + + + + Document + + + + + +
+ +
+ + \ No newline at end of file diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..3e3abed --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,21 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +#nav_bar { + display: flex; + flex-direction:row; + align-items: center; + background-color: #333; + color: white; + padding: 10px; + margin: 0; +} + +#nav_bar a { + color: white; + text-decoration: none; + padding: 10px; +}