-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1023 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
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Task Time Tracker</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>Task Time Tracker</h1>
<div class="button-container">
<div class="button-row">
<button id="button-10s">10s</button>
<button id="button-15s">15s</button>
<button id="button-20s">20s</button>
<button id="button-30s">30s</button>
<button id="button-40s">40s</button>
<button id="button-1m">1m</button>
</div>
<div class="button-row">
<button id="button-2m">2m</button>
<button id="button-3m">3m</button>
<button id="button-4m">4m</button>
<button id="button-5m">5m</button>
<button id="button-7m">7m</button>
<button id="button-9m">9m</button>
<button id="button-1h">1h</button>
</div>
</div>
<div>
Total Time Accumulated: <span id="total-time">0s</span>
</div>
<div id="copyright">Copyright © 2023 Binjo</div>
<script src="script.js"></script>
</body>
</html>