-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (128 loc) · 5.37 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<title>Playgrism</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/78ec96deb2.js" crossorigin="anonymous"></script></head>
<body>
<header>
<h1>Playgrism</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<div class="main" id="games">
<div class="game-grid" id="game-sec">
<div class="game">
<img src="static/images/tic-tac-toe/logo.png" alt="Game 1">
<h3>Tic-Tac-Toe</h3>
<p>Three in a row wins. Strategic placement. Simple game.
</p>
<a href="pages\tic-tac-toe.html" target="_blank">Play Now</a>
</div>
<div class="game">
<img src="./static/images/pingpong/pingpong.jpg" alt="Game 2">
<h3>Ping pong</h3>
<p>Small ball, big fun, fast-paced game of skill and strategy.
</p>
<a href="pages/pingpong.html" target="_blank">Play Now</a>
</div>
<div class="game">
<img src="static/images/Guess the Number/guess the number.png" alt="Game 3">
<h3>Guess the Number</h3>
<p>Guess number, receive feedback, repeat until correct. Limit attempts.
</p>
<a href="pages/Guess_the_number.html" target="_blank">Play Now</a>
</div>
<div class="game">
<img src="./static/images/randomJoke.jfif" alt="Game 4">
<h3>Joke generator</h3>
<p>Create funny jokes instantly with AI-powered joke generator.
</p>
<a href="pages/randomJoke.html" target="_blank">Play Now</a>
</div>
<div class="game">
<img src="static/images/memory-game/display-img.jpg" alt="Game 5">
<h3>Memory</h3>
<p>Recall and match hidden cards in this classic memory game.
</p>
<a href="pages/memory-game.html" target="_blank">Play Now</a>
</div>
<div class="game">
<img src="./static/images/reaction.PNG" alt="Game 6">
<h3>Reaction time</h3>
<p>Quickly respond to stimuli, challenge your reaction speed and accuracy.
</p>
<a href="pages/reaction.html" target="_blank">Play Now</a>
</div>
<div class="game">
<img src="./static/images/connect-four/connect-four.png" alt="Game 6">
<h3>4 dots</h3>
<p>Vertical board game, four in a row to win.
</p>
<a href="pages/dot-and-boxes.html">Play Now</a>
</div>
<div class="game">
<img src="static/images/dino/dinogame.png" alt="Game 6">
<h3>Dino</h3>
<p>Extinct reptiles, fossils, Jurassic Park, popular culture, scientific discoveries, paleontology.
</p>
<a href="pages/dino.html">Play Now</a>
</div>
<div class="game">
<img src="static/images/Simon-Game/Simon_game.png" alt="Game 6">
<h3>Simon</h3>
<p>Memory game with lights and sounds, repeat pattern to win.
</p>
<a href="pages/memory-game.html">Play Now</a>
</div>
<div class="game">
<img src="static/images/tetris/tetris.png" alt="Game 6">
<h3>Tetris</h3>
<p>Falling blocks, complete lines, score points, addictive gameplay, classic game.
</p>
<a href="pages/tetris.html">Play Now</a>
</div>
<div class="game">
<img src="./static/images/hangman/hangman.png" alt="Game 6">
<h3>Hangman</h3>
<p>Guess letters, solve the word, don't get hanged. Have fun!
</p>
<a href="pages/hangman.html">Play Now</a>
</div>
<div class="game">
<img src="static/images/dot-and-boxes/Dots_boxes.png" alt="Game 6">
<h3>Dot boxes</h3>
<p>Connect dots to form boxes, score more boxes to win.
</p>
<a href="pages/dot-and-boxes.html">Play Now</a>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="social-media-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
<div class="footer-left">
<p>© 2023 Playgrism. All Rights Reserved.</p>
</div>
<div class="footer-right">
<p>Made with ♥ by G.O.D.</p>
</div>
</div>
</footer>
</body>
</html>