From 521f860c8315d00db98ccaa329c550a8461364a2 Mon Sep 17 00:00:00 2001 From: Daniyal Zulfiqar Date: Tue, 3 Dec 2024 21:32:23 -0800 Subject: [PATCH 1/2] Add header markup --- src/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.html b/src/index.html index 60ff4f8..f5b17d4 100644 --- a/src/index.html +++ b/src/index.html @@ -14,5 +14,8 @@ Placeholder +
+ Header +
\ No newline at end of file From dce3f0818185abade78902964ba5b94f9c6e4dd3 Mon Sep 17 00:00:00 2001 From: Daniyal Zulfiqar Date: Tue, 3 Dec 2024 21:33:12 -0800 Subject: [PATCH 2/2] Add header styles --- src/styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/styles.css b/src/styles.css index 4618cb1..f56e3e8 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,4 +1,13 @@ body { font-family: Arial, Helvetica, sans-serif; font-size: 18px; +} + + +.header { + height: 50px; + display: flex; + justify-content: center; + align-items: center; + border-bottom: 1px solid black; } \ No newline at end of file