diff --git a/week-4-mini-layout/index.html b/week-4-mini-layout/index.html new file mode 100644 index 0000000..772056f --- /dev/null +++ b/week-4-mini-layout/index.html @@ -0,0 +1,16 @@ + + + + + + + Mini Layout + + + + +

Welcome to the app!

+

Thanks for signing up. Let's take a look around.

+ + + \ No newline at end of file diff --git a/week-4-mini-layout/smile-regular.svg b/week-4-mini-layout/smile-regular.svg new file mode 100644 index 0000000..4ca93c8 --- /dev/null +++ b/week-4-mini-layout/smile-regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/week-4-mini-layout/style.css b/week-4-mini-layout/style.css new file mode 100644 index 0000000..b9a2349 --- /dev/null +++ b/week-4-mini-layout/style.css @@ -0,0 +1,21 @@ +* { + box-sizing: border-box; +} + +body { + height: 100vh; + width: 100vw; + margin: 0; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +h1 { + margin: 0; +} + +img { + height: 48px; +} \ No newline at end of file