-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path404.html
64 lines (64 loc) · 1.97 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PN9HFGZ2VS"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-PN9HFGZ2VS');
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="refresh"
content="5; url='https://emojiminesweeper.com'"
/>
<meta name="author" content="Michael Kolesidis" />
<title>Emoji Minesweeper | 404 Page Not Found</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Font -->
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/style.css" />
<link rel='icon' href='./assets/favicon.ico' type='image/x-icon'/ >
</head>
<body id="error-page">
<div style="display: flex; align-items: center; justify-content: center">
<img
src="../assets/logo.svg"
style="width: 55px; margin: 20px"
alt="Emoji Minesweeper logo and wordmark"
/>
<h1 style="margin-top: 20px; font-size: 50px; font-weight: 1000">
Emoji Minesweeper
</h1>
</div>
<h1 style="margin-top: 20px; font-size: 150px">404</h1>
<h2 style="margin-bottom: 60px; font-size: 20px">Nothing to see here!</h2>
<a href="/">
<button
style="
font-size: 30px;
font-weight: 600;
margin-bottom: 10px;
height: 80px;
width: 200px;
"
>
Home
</button>
</a>
<p>(Or wait to be redirected)</p>
</body>
</html>