-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css" />
<title>Aim Training</title>
</head>
<body>
<div class="screen">
<h1>Aim Training</h1>
<a href="#" class="start" id="start">Start Game</a>
</div>
<div class="screen">
<h1>Сhoose time</h1>
<ul class="time-list" id="time-list">
<li>
<button class="time-btn" data-time="10">
10 sec
</button>
</li>
<li>
<button class="time-btn" data-time="20">
20 sec
</button>
</li>
<li>
<button class="time-btn" data-time="30">
30 sec
</button>
</li>
</ul>
</div>
<div class="screen">
<h3>Remaining: <span id="time">00:00</span></h3>
<div class="board" id="board"></div>
</div>
<script src="./js/main.js"></script>
</body>
</html>