-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./public/css/style.css" />
<title>Distraction Sound Generator</title>
</head>
<body>
<a href="https://github.com/sikelio/distraction-sound-generator" target="_blank">
<img
style="position: absolute; top: 0; right: 0; border: 0;"
src="./public/assets/fork-me.png"
alt="Fork me on GitHub" />
</a>
<main>
<input type="number" id="minutesInput" placeholder="Minutes" />
<button id="generateBtn">Start</button>
<button id="stopBtn">Stop</button>
<p>
Time remaining: <span id="timeRemaining">
00:00
</span>
</p>
<p>Number of high sounds: <span id="nbHighSounds">0 / 0</span></p>
<p>Number of low sounds: <span id="nbLowSounds">0 / 0</span></p>
</main>
<footer>
<p>
Developed by <a href="https://github.com/Sikelio" target="_blank">Sikelio</a> |
Licensed under <a href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">
CC BY-NC 4.0
</a>
</p>
</footer>
<script src="./public/js/script.js"></script>
</body>
</html>