-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 745 Bytes
/
index.html
File metadata and controls
20 lines (19 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Timer Demo</title>
<link rel="stylesheet" type="text/css" href="timer.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="timer.js" type="text/javascript"></script>
</head>
<body>
<h1 data-time-display
data-server-time="0"
data-is-running="" class="time-display">0</h1>
<a href="javascript:void(0);" data-play-btn class="timer-btn">Play</a>
<a href="javascript:void(0);" data-pause-btn class="timer-btn">Pause</a>
<a href="javascript:void(0);" data-stop-btn class="timer-btn">Reset</a>
</body>
</html>