From c61c578d9ff2c6c6f95e1b395af3588b7c0d7cbb Mon Sep 17 00:00:00 2001 From: tchemaster Date: Sat, 3 Jan 2026 21:18:53 -0300 Subject: [PATCH 1/2] Add header markup --- src/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 60ff4f8..b83774f 100644 --- a/src/index.html +++ b/src/index.html @@ -13,6 +13,8 @@ - Placeholder +
+ Header +
\ No newline at end of file From 67c6293e74e311c85a790dfe57192e7545df1b32 Mon Sep 17 00:00:00 2001 From: tchemaster Date: Sat, 3 Jan 2026 21:21:44 -0300 Subject: [PATCH 2/2] Add header styles --- src/styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/styles.css b/src/styles.css index 4618cb1..831f374 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,4 +1,12 @@ 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