From 84628f1b0deacdf94b3afec032e573006c6bd84d Mon Sep 17 00:00:00 2001 From: SuperNinjaEv Date: Tue, 6 Dec 2022 21:44:54 -0500 Subject: [PATCH] Finished lab --- about.html | 1 + style.css | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 style.css diff --git a/about.html b/about.html index db276da..a34bd1e 100644 --- a/about.html +++ b/about.html @@ -3,6 +3,7 @@ CSS Intro +

Your Name Here

diff --git a/style.css b/style.css new file mode 100644 index 0000000..3bc793f --- /dev/null +++ b/style.css @@ -0,0 +1,36 @@ +h1 { + font-family: Luminari; + color: blue; +} +ul { + list-style: none; +} +ol { + font-weight: bold; +} +li { + text-align: center; + border: 1px solid red; + border-radius: 10px; + color: blue; + background-color: lightpink; + padding-left: 30px; +} +img { + height: 200px; + align-items: center; +} +body { + font-family: sans-serif; + background-color: aqua; +} +h3 { + text-decoration: underline; +} +p { + padding-top: 20px ; + padding-bottom: 20px ; +} +h1 { + font-size: 30px; +}