-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.17 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
<!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>Document</title>
</head>
<body>
<div class="screen">
<h1>Aim Training</h1>
<a href="#" class="start" id="start">Начать игру</a>
</div>
<div class="screen">
<h1>Выберите время</h1>
<ul class="time-list" id="time-list">
<li>
<button class="time-btn" data-time="10">10 сек</button>
</li>
<li>
<button class="time-btn" data-time="20">20 сек</button>
</li>
<li>
<button class="time-btn" data-time="30">30 сек</button>
</li>
<li>
<button class="time-btn" data-time="40">40 сек</button>
</li>
</ul>
</div>
<div class="screen">
<h3>Осталось <span id="time">00:00</span></h3>
<div class="board" id="board"></div>
</div>
<script src="script.js"></script>
</body>
</html>