-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.17 KB
/
index.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
<!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="stylesheet" href="assets/css/style.css" />
<link rel="icon" href="favicon.ico" />
<link
rel="apple-touch-icon"
href="https://html-online-game.github.io/favicon.ico"
/>
<!-- 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>
<script type="text/javascript" src="assets/js/script.js"></script>
<title>Online Game Site</title>
</head>
<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="game-container">
<h2>All Games</h2>
<!-- html-online-game-list-ad -->
<div class="ad-container">
<ins
class="adsbygoogle"
style="display: block"
data-ad-client="ca-pub-4988552421895566"
data-ad-slot="2343374539"
data-ad-format="auto"
data-full-width-responsive="true"
></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="game-list"></div>
</main>
<footer>
<p>© 2025 Online Game Site. All rights reserved.</p>
</footer>
</body>
</html>