-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 984 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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style.css">
<title>Document</title>
</head>
<body>
<div id="container">
<div id="first">
<h3>Time left</h3>
<div id="timer">
<div id="time">
<span id="seconds">00</span>
</div>
</div>
</div>
<div id="second">
<h4>Your goal</h4>
<label id="goal">0</label>
<button id="replay">replay</button>
</div>
<div id="third">
<h4>Your score</h4>
<label id="count">0</label>
<div id="btns">
<button id="reset">reset</button>
<button id="increase">increase</button>
<button id="decrease">decrease</button>
</div>
</div>
</div>
<script src="script/script1.js"></script>
</body>
</html>