-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 786 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<link href='css/bootstrap.min.css' rel='stylesheet' type='text/css'>
<link href='css/style.css' rel='stylesheet' type='text/css'>
<title>Timer</title>
</head>
<body>
<div class='centered container'>
<div class='margin row'></div>
<span id='timer'></span>
<div class='buttons'>
<button class='btn btn-large btn-success' id='start'>Start timer</button>
<button style='display:none;' class='btn btn-large btn-warning' id='pause'>Pause timer</button>
<button class='btn btn-large btn-danger' id='reset'>Reset timer</button>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src='timer.js'></script>
</body>
</html>