-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (40 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Lab</title>
<!-- Icons -->
<link href="./assets/icons/video_game.ico" rel="icon" type="image/x-icon" />
<link href="./assets/icons//video_game.svg" rel="icon" type="image/svg+xml" />
<link href="./assets/icons//video_game.png" rel="icon" type="image/png" />
<link rel="stylesheet" href="./assets/css/style.css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-black text-white font-sans" id="main">
<div class="animated-bg"></div>
<div class="container mx-auto p-8 flex flex-col items-center justify-center min-h-screen">
<header class="flex items-center justify-between w-full max-w-4xl mb-8">
<h1 class="text-4xl md:text-5xl font-bold text-purple-400 mr-2">
Game Lab
</h1>
<a href="https://github.com/ibra-kdbra/JS_game_collections" target="_blank" class="flex items-center ml-4">
<img src="./assets/icons/github-icon.svg" alt="GitHub Icon" class="h-8 w-8" />
</a>
</header>
<!-- Description -->
<p class="text-lg text-gray-300 mb-10 text-center">
Explore my collection of JavaScript and HTML games. Click any game to start playing!
</p>
<!-- Game Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 w-full max-w-4xl" id="game-cards-container">
<!-- Cards will be inserted dynamically here -->
</div>
<!-- Footer Section -->
<footer class="mt-10 text-gray-500 text-sm">
Made by <a class="text-purple-400" href="https://github.com/ibra-kdbra">ibra-kdbra</a>
</footer>
</div>
<script type="module" src="./assets/js/script.js"></script>
</body>
</html>