diff --git a/src/index.html b/src/index.html index 60ff4f8..e6c0fcb 100644 --- a/src/index.html +++ b/src/index.html @@ -13,6 +13,12 @@ - Placeholder +
+ Header +
+
+ \ No newline at end of file diff --git a/src/styles.css b/src/styles.css index 4618cb1..d4bcf75 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,4 +1,24 @@ 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; +} + +.footer { + height: 49px; + display: flex; + justify-content: center; + align-items: center; + border-top: 1px solid black; +} + +.content { + min-height: calc(100vh - 100px); } \ No newline at end of file