diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-08-13 13:46:25 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-08-13 13:46:25 -0500 |
commit | 900f96e42d8d37cc2e7c582e285ed0a29c15602b (patch) | |
tree | 3ef69dc5b1736162ae575b800853b7be99572f18 /src/html | |
parent | 8541ecceb35971c76b6cb13613597cd07f95d6e0 (diff) |
Add 404 page
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/404.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/html/404.html b/src/html/404.html new file mode 100644 index 0000000..e992326 --- /dev/null +++ b/src/html/404.html @@ -0,0 +1,21 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>Mark's Kitchen - Email</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" type="text/css" href="/css/styles.css"> +</head> + +<body> + <div> + <h1> + <a class="navigation" href="/" title="marks.kitchen"><</a> + 404 Error + </h1> + <p>That page doesn't seem to exist...</p> + </div> +</body> + +</html>
\ No newline at end of file |