-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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" />
<title>Momentum</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="main-box">
<h1 class="clock">00:00:00</h1>
<h2 class="greeting hidden"></h2>
<form class="login-form hidden">
<input
required
maxlength="10"
type="text"
placeholder="What is your name?"
/>
<button class="hidden">Log In</button>
</form>
<form class="todo-form hidden">
<input
class="todo-input"
required
type="text"
placeholder="Write a To Do and Press Enter"
/>
</form>
<ul class="todo-list">
<div class="todo-list-box"></div>
</ul>
</div>
<div class="quotes">
<span class="quote"></span>
<span class="author"></span>
</div>
<div class="upper-box">
<form class="search-box">
<div class="search-icon">
<i class="fas fa-search"></i>
</div>
<div class="search-hidden-box">
<input class="search-input" type="text" />
<div class="search-engine">
<div class="google">
<i class="fab fa-google"></i>
</div>
<div class="naver hidden">N</div>
</div>
</div>
</form>
<div class="weather-box">
<div class="icon-weather-temperature-box">
<div class="icon-weather-box"></div>
<div class="weather-temperature-box">
<span class="weather"></span>
<span class="temperature"></span>
</div>
</div>
<div class="city-box">
<span class="city"></span>
</div>
</div>
</div>
</body>
<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>
<script src="js/search.js"></script>
<script
src="https://kit.fontawesome.com/76131a09e0.js"
crossorigin="anonymous"
></script>
</html>