-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.2 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
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Гра на пам'ять</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div class="status">
<h1>Гра на пам'ять</h1>
<p id="attempts">Кількість спроб: 0</p>
<p id="mistakes">Кількість помилок: 0</p>
<p id="pairs">Знайдено пар: 0/12</p>
</div>
<div class="controls">
<div>
<label for="difficulty">Виберіть рівень складності:</label>
<select id="difficulty">
<option value="easy">Легкий (6 пар)</option>
<option value="medium">Середній (8 пар)</option>
<option value="hard">Важкий (12 пар)</option>
</select>
</div>
<button id="restart">Перезапустити гру</button>
</div>
<div class="container">
<div class="game-board"></div>
</div>
<script src="script.js"></script>
</body>
</html>