-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (72 loc) · 3.72 KB
/
index.html
File metadata and controls
82 lines (72 loc) · 3.72 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
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VIP Gaming Hub | Premium HTML5 Games</title>
<meta name="description" content="Access 37+ premium HTML5 games in one high-quality gaming portal. Play Candy Crush, Pac-Man, Chess, and more.">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<!-- Favicon Placeholders -->
<link rel="icon" href="assets/thumb.png">
</head>
<body>
<!-- Navigation -->
<nav>
<div class="logo" onclick="window.location.reload()">VIP Gaming Hub</div>
<div class="search-container">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" id="gameSearch" placeholder="Search for a game...">
</div>
<div class="nav-links" style="display: flex; gap: 1.5rem; align-items: center;">
<a href="#games" style="color: white; text-decoration: none; font-weight: 500;">All Games</a>
<a href="https://github.com/VIPHACKE" target="_blank" style="color: var(--accent-color); font-size: 1.2rem;"><i class="fa-brands fa-github"></i></a>
</div>
</nav>
<!-- Hero Section -->
<header class="hero">
<h1 id="hero-title">ULTIMATE GAMING HUB</h1>
<p>Your one-stop destination for the best web-based HTML5 games. No downloads, just pure gaming fun.</p>
<div class="hero-actions">
<a href="#games" class="play-btn" style="padding: 1rem 2rem; font-size: 1.1rem; border-radius: 50px;">Explore Games</a>
</div>
</header>
<!-- Category Filters -->
<section class="filters" id="categories">
<button class="filter-btn active" data-category="all">All Games</button>
<button class="filter-btn" data-category="Arcade">Arcade</button>
<button class="filter-btn" data-category="Puzzle">Puzzle</button>
<button class="filter-btn" data-category="Logic">Logic</button>
<button class="filter-btn" data-category="Action">Action</button>
<button class="filter-btn" data-category="Word">Word</button>
</section>
<!-- Main Games Grid -->
<main class="game-grid" id="gameGrid">
<!-- Games will be dynamically rendered here by script.js -->
<div class="loader" style="grid-column: 1/-1; text-align: center; padding: 5rem;">
<i class="fa-solid fa-circle-notch fa-spin fa-3x" style="color: var(--accent-color);"></i>
<p style="margin-top: 1rem; color: var(--text-muted);">Loading Games...</p>
</div>
</main>
<!-- Footer -->
<footer>
<div class="logo" style="margin-bottom: 1.5rem; font-size: 1.2rem;">VIP Gaming Hub</div>
<p>© 2026 VIP Gaming Hub. Developed with ❤️ for Gamers.</p>
<div class="social-links">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="https://github.com/VIPHACKE" target="_blank"><i class="fa-brands fa-github"></i></a>
</div>
<div style="margin-top: 2rem; font-size: 0.8rem; color: var(--text-muted); opacity: 0.5;">
Disclaimer: All games belong to their respective creators. This platform is a curated showcase.
</div>
</footer>
<!-- Custom JS -->
<script src="script.js"></script>
</body>
</html>