-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (20 loc) · 841 Bytes
/
index.html
File metadata and controls
28 lines (20 loc) · 841 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
<!DOCTYPE html>
<html lang="en">
<!-- This is a simple app I built to help my partner track her work hours -->
<head>
<meta charset="UTF-8">
<script src="js/script.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>Work timer</title>
</head>
<body>
<div id="content">
<h1>Work hours</h1>
<button type="button" class="btn btn-success"
onclick="startTime(); setStart(); displayTime(); startDisplay(); setMin()">Work</button>
<button type="button" class="btn btn-warning" onclick="breakTime()">Break</button>
<p id="disp"></p>
</body>
</html>