-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 850 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Exam timer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>exam timer</h1>
<div id="options">
<span>reading time: </span>
<span id="reading-time" class="numeric-input">15</span>
<span>writing time:</span>
<span id="writing-time" class="numeric-input">60</span>
<button id="start-button">start</button>
</div>
<div id="time">
<h1>0:00</h1>
<h3>scroll up/down on time box to increase/decrease time</h3>
</div>
<audio id="ding" src="ding.mp3"></audio>
<script src="main.js"></script>
</body>
</html>