From a7fc328e2872ca5b3bc1bf9ce2941e3ac774e464 Mon Sep 17 00:00:00 2001 From: Jacob Casper Date: Sat, 9 Apr 2022 16:17:44 -0500 Subject: [PATCH] Add styling --- index.php | 9 ++++++++- style.css | 16 ++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 style.css diff --git a/index.php b/index.php index 804a15e..88310ff 100644 --- a/index.php +++ b/index.php @@ -1,4 +1,10 @@ + + + + + +
Upload fetchArray()) { echo ''; } ?> -
footer
+
+ diff --git a/style.css b/style.css new file mode 100644 index 0000000..df0850b --- /dev/null +++ b/style.css @@ -0,0 +1,16 @@ +body { + background-color: #eee; +} +main { + display: flex; + flex-direction: column; + align-items: center; + +} + +main p::before { + content: "Jacob: "; +} +main p { + max-width: 480px; +} -- 2.20.1