-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy path404.html
More file actions
31 lines (28 loc) · 1.06 KB
/
404.html
File metadata and controls
31 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — OutRed</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/css/style.css" />
<link id="favicon" rel="shortcut icon" href="/assets/favicon.png" type="image/x-icon" />
<script src="/js/tabcloak.js"></script>
</head>
<body>
<div class="page">
<div class="page-404">
<div class="big-num">404</div>
<h2>Page Not Found</h2>
<p>Looks like this game level doesn't exist.</p>
<div style="display:flex; gap:12px; justify-content:center; flex-wrap:wrap;">
<a href="/" class="btn btn-primary">Go Home</a>
<a href="/games.html" class="btn btn-secondary">Browse Games</a>
</div>
</div>
</div>
<script src="/js/core.js"></script>
</body>
</html>