From af2f365968c8640079a84f11067c4ad1bcdd4b69 Mon Sep 17 00:00:00 2001 From: Neil Custer Date: Tue, 17 Dec 2024 12:39:46 -0600 Subject: [PATCH] Added own Styles.css --- index.html | 23 +++++++++++++++++++++-- styles.css | 24 ++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 styles.css diff --git a/index.html b/index.html index f906d8b..72d9e56 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,26 @@ + + + + + + + Cafe Menu + + -

Hello World

-

Neil's site hosted with GitHub Pages.

+ diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..f62a27b --- /dev/null +++ b/styles.css @@ -0,0 +1,24 @@ +body { + background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); + font-family: sans-serif; + padding: 20px; + } + + h1 { + font-size: 40px; + margin-top: 0; + margin-bottom: 15px; + } + + h2 { + font-size: 30px; + } + + .established { + font-style: italic; + } + + h1, h2, p { + text-align: center; + } + \ No newline at end of file