-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (60 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.cdnfonts.com/css/gotham-6" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to the Game Store</h1>
<div class="container">
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Games</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="game">
<a href="https://adi-exe.github.io/tik-tak-toe/">
<img src="ticimg.jpg" alt="Game 1"></a>
<p><h3>TIC TAC TOE</h3></p>
<p>
Now you can play Tic Tac Toe on your device for FREE.</p>
<div class="hr"><a href="https://adi-exe.github.io/tik-tak-toe/"> PLAY NOW!</a></div>
</div>
<div class="game">
<a href="https://adi-exe.github.io/Rock-Paper_scissor/">
<img src="stoneimg.jpg" alt="Game 2"></a>
<p><h3>ROCK PAPER SCISSOR</h3></p>
<p>Accept the challenge & start the rock, paper scissor epic fight battle challenge!</p>
<div class="hr"><a href="https://adi-exe.github.io/Rock-Paper_scissor/"> PLAY NOW!</a></div>
</div>
<div class="game">
<a href="https://adi-exe.github.io/Snake-Xenzia/">
<img src="snakeimg.jpg" alt="Game 3"></a>
<p><h3>SNAKE XENZIA</p>
</h3>
<p>Hit other worms to grow faster, play the fun action hungry snake game.</p>
<div class="hr"><a href="https://adi-exe.github.io/Snake-Xenzia/"> PLAY NOW!</a></div>
</div>
<div class="game">
<a href="https://adi-exe.github.io/Memory-Game/">
<img src="memoryimg.jpg" alt="Game 4"></a>
<p><h3>MEMORY GAME</h3></p>
<p>Train your cognition with games that target memory, reasoning, and more! </p>
<div class="hr"><a href="https://adi-exe.github.io/Memory-Game/"> PLAY NOW!</a></div>
</div>
</main>
<footer>
<p>© 2022 Game Store. All rights reserved.</p>
</footer>
</body>
</html>