generated from Zitishk/temp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (50 loc) · 1.68 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Drink Water</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Drink Water</h1>
<h3>Goal:2 litres</h3>
<div class="bottle">
<div class="remained" id="remained">
<div class="ok" id="lt">2L</div>
<div class="text" id="text">remained</div>
</div>
<div class="filled" id="filled">
<div class="percent" id="pcnt">0%</div>
</div>
</div>
<br><br>
<div class="fix">
<div class="bt"><h3 id="bt">Select how many glasses of water you have drunk</h3></div>
<div class="small">
<div class="level-one">
<button type="button" id ="1" onclick="clicked(id)">
250 mL
</button>
<button type="button" id ="2" onclick="clicked(id)">250 mL</button>
<button type="button" id ="3" onclick="clicked(id)">250 mL</button>
<button type="button" id ="4" onclick="clicked(id)">
250 mL
</button>
</div>
<br>
<br>
<div class="level-two">
<button type="button" id ="5" onclick="clicked(id)">
250 mL
</button><button type="button" id ="6"onclick="clicked(id)">
250 mL
</button><button type="button" id ="7" onclick="clicked(id)">
250 mL
</button><button type="button" id ="8" onclick="clicked(id)">
250 mL
</button>
</div>
</div>
</div>
</body>
<script src="change.js"></script>
</html>