forked from AdaGold/jQuery-Stopwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 944 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>Stopwatch!</title>
<meta charset="utf-8">
<link href="index.css" media="screen" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="images">
<img src ="kittycreeper.gif">
<img id="glow" src ="glow.gif">
</div>
<div class="stopWatch" id="sw1">
<section class="display">00:00:00.0</section>
<button class="stopWatch start">Start!</button>
<button class="stopWatch stop">Stop!</button>
<button class="stopWatch reset">Reset!</button>
</div>
<div class="stopWatch" id="sw2">
<section class="display">00:00:00.0</section>
<button class="stopWatch start">Start!</button>
<button class="stopWatch stop">Stop!</button>
<button class="stopWatch reset">reset!</button>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<script src="index.js"></script>
</html>