BemaniPatcher/_404.html
Will Toohey fb62411b83
Some checks are pending
Check HTML/JS is valid / build (push) Waiting to run
Add 404 page for mon.im hosting
2025-04-02 19:45:38 +10:00

37 lines
871 B
HTML

<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>404</title>
<style>
body, html, div {
width: 100%;
height: 100%;
margin: 0;
}
div {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
p {
padding: 0px 10px;
max-width: 30em;
}
</style>
</head>
<body>
<div>
<h1>Not found...</h1>
<p>
I recently moved to a new web host.
If you think something should be at this address,
please <a href="https://github.com/mon">get in touch</a>.
</p>
</div>
</body>
</html>