-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 1.92 KB
/
index.html
File metadata and controls
71 lines (64 loc) · 1.92 KB
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
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Momentum App</title>
</head>
<body>
<header id="main-header">
<div class="color-change">
<button>Click to change color</button>
</div>
<div class="clock">
<h2 id="clock">00:00</h2>
<div id="weather">
<span></span>
<span></span>
</div>
</div>
<div class="login">
<form id="login-form" class="hidden">
<input required maxlength="15" type="text" placeholder="What is your name?">
<button>Log In</button>
</form>
<h1 id="greeting" class="hidden"></h1>
</div>
<div class="quote hidden">
<div>
<span>TODAY's quote</span>
</div>
<div id="quote-quotes">
<span class="quotes"></span>
</div>
<div id="quote-author">
<span class="authors"></span>
</div>
</div>
</header>
<div class="first-cloumn hidden">
<div class="todolist">
<form id="todo-form">
<input id="todo-input" type="text" placeholder="Write a to Do and Press Enter" required>
</form>
<ul id="todo-list"></ul>
</div>
<div class="waterdrink">
<div class="waterdirnk-input__box">
<input type="button" value="+1 CUP" class="waterdrink-count__plus">
<input type="button" value="-1 CUP" class="waterdrink-count__minus">
</div>
<span class="waterdrink__counter">You Don't Drink water yet!</span>
</div>
</div>
<script src="js/quotes.js"></script>
<script src="js/greetings.js"></script>
<script src="js/clock.js"></script>
<script src="js/todo.js"></script>
<script src="js/weather.js"></script>
<script src="js/count-water.js"></script>
<script src="js/backgroundcolor.js"></script>
</body>
</html>