commit cc9bda2fe0e157da29cebac3e854b5073e1a8d35 (patch) Author: Alex Karle <alex@alexkarle.com> Date: Sat, 5 Nov 2022 17:35:24 -0400 Initial Commit Diffstat:
A | index.html | | | 13 | +++++++++++++ |
A | style.css | | | 8 | ++++++++ |
2 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/index.html b/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + <link rel="stylesheet" href="/style.css"> + <title>Alex & Jennie's Wedding</title> + </head> + + <body> + Hello World + </body> +</html> diff --git a/style.css b/style.css @@ -0,0 +1,8 @@ +/* https://www.swyx.io/css-100-bytes */ +html { + max-width: 70ch; + padding: 3em 1em; + margin: auto; + line-height: 1.75; + font-size: 1.25em; +}