diff options
Diffstat (limited to 'app/404.html')
-rw-r--r-- | app/404.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/404.html b/app/404.html new file mode 100644 index 000000000..2fbf1e311 --- /dev/null +++ b/app/404.html @@ -0,0 +1,28 @@ +<html> +<head> + <title>404</title> + <style> + *{ + padding: 0; + margin: 0; + box-sizing: border-box; + } + img{ + display: block; + } + html, body{ + display: flex; + justify-content: center; + align-items: center; + width: 100%; + height: 100%; + } + img{ + display: block; + } + </style> +</head> +<body> + <img src="./images/404.png" alt=""> +</body> +</html>
\ No newline at end of file |