From bd7e292dacd72c84eef585a21b158c3a8ab64f81 Mon Sep 17 00:00:00 2001
From: Tony Marcum
Date: Wed, 14 Dec 2022 18:46:54 -0500
Subject: [PATCH 1/2] lecture 25
---
starter/03-CSS-Fundamentals/css/style.css | 46 +++++++++++++++++++++++
starter/03-CSS-Fundamentals/index.html | 12 +-----
2 files changed, 48 insertions(+), 10 deletions(-)
create mode 100644 starter/03-CSS-Fundamentals/css/style.css
diff --git a/starter/03-CSS-Fundamentals/css/style.css b/starter/03-CSS-Fundamentals/css/style.css
new file mode 100644
index 000000000..7b23089f0
--- /dev/null
+++ b/starter/03-CSS-Fundamentals/css/style.css
@@ -0,0 +1,46 @@
+h1,
+h2,
+h3,
+h4,
+p,
+li {
+ font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
+}
+
+h1 {
+ font-size: 26px;
+ text-transform: uppercase;
+ font-style: italic;
+}
+
+h2 {
+ font-size: 40px;
+}
+
+h3 {
+ font-size: 30px;
+}
+
+h4 {
+ font-size: 20px;
+ text-transform: uppercase;
+ text-align: center;
+}
+
+p {
+ font-size: 22px;
+ line-height: 1.5;
+}
+
+li {
+ font-size: 20px;
+}
+
+footer p {
+ font-size: 16px;
+ text-align: center;
+}
+
+header p {
+ font-style: italic;
+}
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index df8a623a8..727230838 100644
--- a/starter/03-CSS-Fundamentals/index.html
+++ b/starter/03-CSS-Fundamentals/index.html
@@ -2,19 +2,11 @@
+
The Basic Language of the Web: HTML
-
-