From 97f1fd386a064f94c46ea0e959d680ade224d40d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 16 May 2020 13:24:31 -0700 Subject: [PATCH] Add the most basic of font styling Simply choosing a sans-serif font for the body as well as some larger (and bold) font sizes for h1 and h2 headers. --- index.html | 1 + style.css | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 style.css diff --git a/index.html b/index.html index dea8e1d..24f4f32 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ LMNO Games +

LMNO Games

diff --git a/style.css b/style.css new file mode 100644 index 0000000..899b902 --- /dev/null +++ b/style.css @@ -0,0 +1,20 @@ +/*\ +|*| +|*| Core elements: Sizing and padding +|*| +\*/ + +body { + line-height: 1.5; + font-family: sans-serif; +} + +h1 { + font-size: 150%; + font-weight: bold; +} + +h2 { + font-size: 110%; + font-weight: bold; +} -- 2.43.0