7bebea07b4
Just use normal HTML + static CSS
22 lines
563 B
HTML
22 lines
563 B
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<title>404 Not Found</title>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="initial-scale=1, width=device-width">
|
||
<meta name="robots" content="noindex, nofollow">
|
||
<link rel="stylesheet" href="/error.css">
|
||
</head>
|
||
<body>
|
||
<hgroup class="error-page__stamp">
|
||
<h1>404</h1>
|
||
<h2>Sorry, that page doesn’t exist!</h2>
|
||
<hr />
|
||
<div>You may have mistyped the address or the page may have moved.</div>
|
||
</hgroup>
|
||
|
||
<a href="/">← Back home</a>
|
||
</body>
|
||
</html>
|
||
|