running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

commit 10e1daf7cb197a35a2dfde4ba6e404218272dcb4
parent 670c8c6dda9819808fb55f6dc4fd413ac58adf4e
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Wed, 18 Aug 2021 17:59:22 -0700

Add 404 page

Diffstat:
Apublic/404.html | 44++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+), 0 deletions(-)

diff --git a/public/404.html b/public/404.html @@ -0,0 +1,44 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="description" content="A collection of tools for runners that calculate splits, convert units, and more"> + <meta name="viewport" content="width=device-width,initial-scale=1.0"> + <title>404 Not Found - Running Tools</title> + + <link rel="icon" type="image/png" sizes="32x32" href="https://ashermorgan.github.io/running-tools/img/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://ashermorgan.github.io/running-tools/img/icons/favicon-16x16.png"> + <link rel="apple-touch-icon" href="https://ashermorgan.github.io/running-tools/img/icons/apple-touch-icon-180x180.png"> + + <style> + * { + margin: 0px; + padding: 0px; + box-sizing: border-box; + } + body { + font-family: Segoe UI, sans-serif; + text-align: center; + } + header { + background-color: hsl(30, 100%, 50%); + padding: 0.25em; + font-size: 2em; + font-weight: bold; + } + h1 { + font-size: 1.5em; + margin: 10px 10px 0px; + } + </style> + </head> + + <body> + <header>Running Tools</header> + <main> + <h1>404 Not Found</h1> + <p><a href="https://ashermorgan.github.io/running-tools">homepage</a></p> + </main> + </body> +</html>