-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy path404.html
More file actions
23 lines (23 loc) · 738 Bytes
/
Copy path404.html
File metadata and controls
23 lines (23 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, follow">
<title>Page not found - Markdown Viewer</title>
<link rel="icon" href="/assets/icon.jpg" type="image/jpg">
<style>
:root { color-scheme: light dark; font-family: system-ui, sans-serif; }
body { display: grid; min-height: 100vh; margin: 0; place-items: center; text-align: center; }
main { max-width: 38rem; padding: 2rem; }
a { color: #0969da; }
</style>
</head>
<body>
<main>
<h1>Page not found</h1>
<p>The requested page does not exist.</p>
<p><a href="/">Open Markdown Viewer</a></p>
</main>
</body>
</html>