From 240efa56d8f4a690922ee8482044186e250a42e3 Mon Sep 17 00:00:00 2001 From: USERNAME Date: Tue, 6 Dec 2022 12:53:23 -0500 Subject: [PATCH] Intro To CSS --- about.css | 33 +++++++++++++++++++++++++++++++++ about.html | 1 + 2 files changed, 34 insertions(+) create mode 100644 about.css diff --git a/about.css b/about.css new file mode 100644 index 0000000..9291477 --- /dev/null +++ b/about.css @@ -0,0 +1,33 @@ +h1 { + font-family:'Luminari'; + color: blue; + font-size: 30px; +} + +li{ + text-align: center; + color: blue; + background-color: lightpink; + border: 1px solid rgb(255,0,0); + border-radius: 10px; + padding-left: 30px; +} +ul { + list-style-type: none; +} +ol { + font-weight: bold; +} +h3 { + text-decoration: underline; +} +body { + font-family: sans-serif; +} +img { + height: 200px; +} +p { + padding-top: 20px; + padding-bottom: 20px; +} \ No newline at end of file diff --git a/about.html b/about.html index db276da..9266b62 100644 --- a/about.html +++ b/about.html @@ -3,6 +3,7 @@ CSS Intro +

Your Name Here