-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 962 Bytes
/
index.html
File metadata and controls
38 lines (36 loc) · 962 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Aim Training</title>
</head>
<body>
<div class="screen">
<h1>Aim Training</h1>
<a href="#" class="time-btn" id="start">Start</a>
</div>
<div class="screen">
<h1>Choose game time</h1>
<ul class="time-list" id="time-list">
<li>
<button class="time-btn" data-time="15">15 sec</button>
</li>
<li>
<button class="time-btn" data-time="30">30 sec</button>
</li>
<li>
<button class="time-btn" data-time="60">60 sec</button>
</li>
<li>
<button class="time-btn" data-time="120">120 sec</button>
</li>
</ul>
</div>
<div class="screen">
<h3><span id="time">00:00</span></h3>
<div class="board" id="board"></div>
</div>
<script type="module" src="/src/index.ts"></script>
</body>
</html>