-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" sizes="16x16 32x32 64x64" href="https://cdn2.iconfinder.com/data/icons/everyday-objects-line-art-1/128/hourglass-ol-2-512.png" />
<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</title>
</head>
<body>
<div id="login-div">
<form id="login-form">
<span>Welcome to Momentum</span>
<input required maxlength="15" type="text" placeholder="What is your name?" />
<input type="submit" value="Log In" />
</form>
</div>
<div class="background blur">
<main>
<section class="component watch">
<div id="clock">
<div id="watch-dot"></div>
<div class="hand hour-hand"></div>
<div class="hand minute-hand"></div>
<div class="hand second-hand"></div>
</div>
<span id="electronic-watch"></span>
</section>
<section class="component day">
<span id="dayOfWeek"></span>
<span id="day"></span>
</section>
<section class="component greet">
<span id="greeting"></span>
</section>
<section class="component todo">
<div id="todo-list"></div>
<form autocomplete="off" id="todo-form">
<input id="todo-input" type="text" placeholder="Write a To Do here" required />
</form>
</section>
<section class="component weather">
<span></span>
<span></span>
</section>
<section class="component quotes">
<div id="quote">
<span></span>
<span></span>
</div>
</section>
</main>
</div>
<script src="js/greetings.js"></script>
<script src="js/clock.js"></script>
<script src="js/quotes.js"></script>
<script src="js/background.js"></script>
<script src="js/todo.js"></script>
<script src="js/weather.js"></script>
</body>
</html>