-
Notifications
You must be signed in to change notification settings - Fork 12
/
404.html
35 lines (30 loc) · 1.19 KB
/
404.html
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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found - The Maze Game</title>
<link rel="stylesheet" href="https://hoangsonww.github.io/The-Maze-Game/src/css/style.css">
<link rel="icon" type="image/x-icon" href="https://hoangsonww.github.io/The-Maze-Game/utils/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="https://hoangsonww.github.io/The-Maze-Game/manifest.json">
<meta name="theme-color" content="#000000">
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CZ3YJF00CG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CZ3YJF00CG');
</script>
<style>
body, html {
scroll-behavior: smooth;
overflow-x: auto;
}
</style>
<body>
<h1 style="color: white">404 Not Found</h1>
<p style="color: white">The page you are looking for does not exist.</p>
<button id="regenerateMaze" onclick="window.location.href='https://hoangsonww.github.io/The-Maze-Game/'" style="margin-top: 25px">Back to Game</button>
</body>
</html>