-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
101 lines (95 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="Online Game Site" />
<meta name="keywords" content="game, online, site" />
<meta name="author" content="Seiri" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#1a1a1a" />
<link rel="icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="favicon.ico" />
<style>
body {
font-family: "Montserrat", sans-serif;
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #fff;
height: 100vh;
}
header {
background-image: linear-gradient(to right, #ff6b6b, #ffa500);
color: #fff;
padding: 10px 30px;
text-align: center;
}
nav {
background-color: #333;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px;
margin: 5px;
border-radius: 5px;
transition: background-color 0.5s;
}
nav a:hover {
background-color: #727272;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.not-found-container {
margin: 3em;
text-align: center;
font-size: 2em;
height: 100%;
}
</style>
<title>Not Found Page</title>
</head>
<!-- Google adsense -->
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4988552421895566"
crossorigin="anonymous"
></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PF5LNZJYLL"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-PF5LNZJYLL");
</script>
<body>
<header>
<h1>Online Game Site</h1>
</header>
<nav>
<a href="https://html-online-game.github.io/">Home</a>
<a href="https://html-online-game.github.io/policy.html">Policy</a>
</nav>
<main class="not-found-container">
<h2>404</h2>
<div>Page not found.</div>
</main>
<footer>
<p>© 2024 Online Game Site. All rights reserved.</p>
</footer>
</body>
</html>