website
Diffstat (limited to '404.html')
| -rw-r--r-- | 404.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/404.html b/404.html new file mode 100644 index 0000000..eda508b --- /dev/null +++ b/404.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>bendn - page not found</title> + <link rel="stylesheet" href="/style/404.css" /> + <link rel="stylesheet" href="/style/styles.css" /> + <script + src="https://kit.fontawesome.com/be4f130556.js" + crossorigin="anonymous" + ></script> + </head> + <body> + <div id="wrapper"> + <h1 class="header"><i class="fa-solid fa-bug"></i> 404</h1> + <div id="inner_column"> + <p align="center"> + the page you were looking for could not be found.<br />return to + <a class="link" href="/index.html" + ><i class="fa-solid fa-house"></i> home</a + >? + </p> + </div> + </div> + </body> +</html> |