-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>kux.gaming</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Multiple Game On Single Platform</h1>
</header>
<main>
<div class="grid-container">
<div class="grid-item">
<img src="scramble.jpeg" alt="Game 1">
<button onclick="window.location.href='game1.html'">Play</button>
</div>
<div class="grid-item">
<img src="quiz.jpeg" alt="Game 2">
<button onclick="window.location.href='game2.html'">Play</button>
</div>
<div class="grid-item">
<img src="snake.jpeg" alt="Game 3">
<button onclick="window.location.href='game3.html'">Play</button>
</div>
<div class="grid-item">
<img src="run.jpeg" alt="Game 4">
<button onclick="window.location.href='game4.html'">Play</button>
</div>
<div class="grid-item">
<img src="snake1.jpeg" alt="Game 5">
<button onclick="window.location.href='game5.html'">Play</button>
</div>
<div class="grid-item">
<img src="run.jpeg" alt="Game 6">
<button onclick="window.location.href='game6.html'">Play</button>
</div>
<div class="grid-item">
<img src="snake.jpeg" alt="Game 7">
<button onclick="window.location.href='game7.html'">Play</button>
</div>
<div class="grid-item">
<img src="scramble.jpeg" alt="Game 8">
<button onclick="window.location.href='game8.html'">Play</button>
</div>
<div class="grid-item">
<img src="quiz.jpeg" alt="Game 9">
<button onclick="window.location.href='game9.html'">Play</button>
</div>
</div>
</main>
<script src="java.js"></script>
<script src="scramble.js."></script>
</body>
</html>