-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.html
More file actions
47 lines (35 loc) · 1.09 KB
/
timer.html
File metadata and controls
47 lines (35 loc) · 1.09 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>timer</title>
<link rel="stylesheet" href="styles/nav.css">
<link rel="stylesheet" href="styles/timer.css">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8KQ6CZ5P3W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8KQ6CZ5P3W');
</script>
<body>
<div id="nav"></div>
<script src="scripts/nav.js"></script>
<div class="timer-page">
<div class="timer-panel">
<select id="courseSelect"></select>
<select id="taskSelect"></select>
<h2 id="timerDisplay">00:00:00</h2>
<button id="startBtn">Start</button>
<button id="pauseBtn">Pause</button>
<button id="resetBtn">Reset</button>
<br /><br />
<a href="taskmanager.html">← Back to Tasks</a>
</div>
</div>
<script src="scripts/timer.js" type="module"></script>
</body>
</html>