forked from johnholbrook/fll-timer.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.17 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Safe Exploration Timer</title>
<link rel="stylesheet" type="text/css" href="/bootstrap/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/site.css">
<link rel="shortcut icon" href="/favicon.ico">
<script src="bootstrap/jquery-3.5.1-compressed.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/cfc6f09f27.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="timer_wrapper">
<div class="col display mb-0" id="timer_display"></div>
<div class="container">
<div class="row">
<button class="col-lg btn btn-success timer_button mx-4 my-4" onclick="toggle()">
<div class="button_title mb-0" id="start_pause">Start</div>
</button>
<button class="col-lg btn btn-warning timer_button mx-4 my-4" onclick="increment_timer()">
<div class="button_title mb-0" id="increment_timer">+10s</div>
</button>
<button class="col-lg btn btn-danger timer_button mx-4 my-4" onclick="reset()">
<div class="button_title">Reset</div>
</button>
</div>
</div>
</div>
<script src="/timer.js"></script>
</body>
</html>