From a90cf9be4ec56d16e26094c577d0170a479e92a1 Mon Sep 17 00:00:00 2001 From: Homer S Date: Fri, 11 Feb 2022 14:04:23 +0100 Subject: [PATCH] Merge --- index.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..4e22b50 --- /dev/null +++ b/index.html @@ -0,0 +1,54 @@ + + + + + + Our superheroes + + + + + + + +
+ +
+ +
+ +
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..cb7a892 --- /dev/null +++ b/style.css @@ -0,0 +1,48 @@ +/* || general styles */ + +html { + font-family: 'helvetica neue', helvetica, arial, sans-serif; +} + +body { + width: 800px; + margin: 0 auto; +} + +h1, h2 { + font-family: 'Faster One', cursive; +} + +/* header styles */ + +h1 { + font-size: 4rem; + text-align: center; +} + +header p { + font-size: 1.3rem; + font-weight: bold; + text-align: center; +} + +/* section styles */ + +section article { + width: 33%; + float: left; +} + +section p { + margin: 5px 0; +} + +section ul { + margin-top: 0; +} + +h2 { + font-size: 2.5rem; + letter-spacing: -5px; + margin-bottom: 10px; +}