-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Games JS</title>
</head>
<body>
<div class="container">
<header class="header">
<a class="logo" href="#">JSGames</a>
<div class="burger__menu"></div>
<div class="menu__btns">
<a class="menu__link" href="./car/hw5.html">CAR</a>
<a class="menu__link" href="./tic-tac-toe/hw3.html">TIC-TAC-TOE</a>
<a class="menu__link" href="./cards/index.html">CARDS</a>
<a class="menu__link" href="./gem-puzzle/index.html">15 PUZZLE</a>
</div>
</header>
<main>
<div class="games">
<div class="game">
<img class="game__img" src="./img/car.png" alt="car game" />
<h3 class="game__title">CAR</h3>
<p class="game__desc"></p>
<a class="game__btn" href="./car/hw5.html">Play</a>
</div>
<div class="game">
<img
class="game__img"
src="./img/tic-tac-toe.png"
alt="tic-tac-toe game"
/>
<h3 class="game__title">TIC-TAC-TOE</h3>
<p class="game__desc"></p>
<a class="game__btn" href="./tic-tac-toe/hw3.html">Play</a>
</div>
<div class="game">
<img class="game__img" src="./img/cards.png" alt="cards game" />
<h3 class="game__title">CARDS</h3>
<p class="game__desc"></p>
<a class="game__btn" href="./cards/index.html">Play</a>
</div>
<div class="game">
<img
class="game__img"
src="./img/puzzle.png"
alt="15 puzzle game"
/>
<h3 class="game__title">15 PUZZLE</h3>
<p class="game__desc"></p>
<a class="game__btn" href="./gem-puzzle/index.html">Play</a>
</div>
</div>
</main>
</div>
<script src="./script.js"></script>
</body>
</html>