forked from jcemer/dojo-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.34 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.34 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dojo Timer</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="clock">
<audio src="assets/sounds/round-1.wav" id="round-1" preload="auto"></audio>
<audio src="assets/sounds/round-2.wav" id="round-2" preload="auto"></audio>
<audio src="assets/sounds/round-3.wav" id="round-3" preload="auto"></audio>
<audio src="assets/sounds/round-4.wav" id="round-4" preload="auto"></audio>
<audio src="assets/sounds/round-5.wav" id="round-5" preload="auto"></audio>
<audio src="assets/sounds/round-6.wav" id="round-6" preload="auto"></audio>
<audio src="assets/sounds/beep.wav" id="beep" preload="auto"></audio>
<audio src="assets/sounds/match.wav" id="match" preload="auto"></audio>
<div class="toggle-settings">⚙</div>
<div class="settings">
<input type="number" id="roundsCount"> rounds de
<input type="number" id="roundSize"> minutos.
<span class="apply-settings">Aplicar</span>
</div>
<div class="display"></div>
<div class="status"></div>
<button class="start" type="button">start</button>
<button class="pause" type="button">pause</button>
</div>
<script src="js/main.js"></script>
</body>
</html>