-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeech_timer.html
More file actions
32 lines (32 loc) · 796 Bytes
/
speech_timer.html
File metadata and controls
32 lines (32 loc) · 796 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Time Your Speech</title>
<link rel="stylesheet" href="css/speech_timer.css">
</head>
<body>
<section>
<section>
<div class="div1">
<label for="time" class="timerLabel">What is the maximum number of minutes for the speech?</label>
</div>
<div class="div2">
<input id="time" type="number">
</div>
</section>
<section>
<div>
<p>Your time left for your speech is <span id="minutes">0</span> minutes and <span id="seconds">0</span> seconds.</p>
</div>
</section>
<section>
<div class="div3">
<button id="btn1">Start</button>
<!-- <button id="btn2">Stop</button>-->
</div>
</section>
</section>
<script src="js/speech_timer.js"></script>
</body>
</html>