-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstop_watch.html
37 lines (29 loc) · 1.14 KB
/
stop_watch.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
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Watch</title>
<meta name="description" content="">
<link rel="stylesheet" type="text/css" href="stop_watch.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--<div class="overlay" id="overlay">-->
<!--<div id="greeting_box" class="greeting_box">-->
<!--<h2 id="greeting" class="greeting">Hello!</h2>-->
<!--</div>-->
<!--</div>-->
<div class="wrapper" id="wrapper">
<div id="greeting_box" class="greeting_box">
<h2 id="greeting" class="greeting">Hello!</h2>
</div>
<div id="clock_demo" class="clock_demo"></div>
<div class="button_box">
<button id="clock" class="clock btn">Clock</button>
<button id="start_btn" class="start_btn btn">Start</button>
<button id="stop_btn" class="stop_btn btn">Stop</button>
</div>
</div>
<script src="stop_watch.js"></script>
</body>
</html>