-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (40 loc) · 1.36 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
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script src="logic.js" type="text/javascript"></script>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=ABeeZee" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade" rel="stylesheet">
</head>
<body>
<video autoplay muted loop id="bg">
<source src="processed-bg.mp4" type="video/mp4">
</video>
<div id="results">
<h1 id="success">Congratulations, you're hydrated.</h1>
<h1 id="failure">Sorry, drink more water.</h1>
</div>
<div id="param-wrapper">
<div id="params">
<h2 class="param-item">I want to drink
<input class="param-item" type="number" id="glasses" name="glasses">
glasses of water over the next
<input class="param-item" type="number" id="duration" name="duration">
hours.</h2>
<button type="button" id="start-timing">Start!</button>
</div>
</div>
<div id="watr-wrapper">
<h1 id="time"></h1>
<div id="tracker-wrap">
<div id="tracker">
<h1 id="count-print"></h1>
<div></div>
<h1 id="goal-print"></h1>
</div>
</div>
<img src="refresh.svg" id="reset" >
<div>
</body>
</html>