-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (66 loc) · 1.91 KB
/
index.html
File metadata and controls
71 lines (66 loc) · 1.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="GamH5 is a lightweight HTML5 game platform for casual browser-based games. Play instantly with no downloads or signups.">
<title>GamH5 ¡ª Play Instantly, Anywhere</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap">
<style>
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background: #f6f8fa;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 3rem 1rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
line-height: 1.6;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 4rem;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<h1>GamH5</h1>
<p><strong>GamH5</strong> is a modern HTML5 game portal focused on casual, mobile-friendly browser games.</p>
<p>No downloads. No installs. Just open and play.</p>
<h2>Why GamH5?</h2>
<ul>
<li>?? Hundreds of HTML5 games</li>
<li>?? Works on mobile and desktop</li>
<li>? Fast loading and lightweight</li>
<li>?? No intrusive ads or login walls</li>
</ul>
<p>Explore now at ?? <a href="https://gamh5.com" target="_blank">gamh5.com</a></p>
<h2>Learn More</h2>
<p>
<a href="https://dev.to/gamh5games" target="_blank">Dev.to Article</a> |
<a href="https://github.com/gamh5" target="_blank">GitHub Repo</a>
</p>
<div class="footer">
? 2025 GamH5. Built with HTML5 + GitHub Pages.
</div>
</div>
</body>
</html>