-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (94 loc) · 2.85 KB
/
Copy pathindex.html
File metadata and controls
110 lines (94 loc) · 2.85 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/roboto.css" />
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/left.css" />
<link rel="stylesheet" href="css/center.css" />
<link rel="stylesheet" href="css/right.css" />
<title>Nomentum</title>
</head>
<body>
<section class="left">
<div class="search_container">
<label for="search_input">
<img
class="search_icon"
id="search_icon"
src="images/search_icon.png"
alt="Search the internet"
/>
</label>
<form class="search_form" id="search_form">
<input
class="search_input"
id="search_input"
placeholder="Search the internet"
type="text"
required
/>
</form>
</div>
</section>
<section class="center">
<div class="center_anchor"></div>
<div class="clock_greeting">
<h2 class="clock" id="clock">00:00:00</h2>
<form class="hidden" id="login_form">
<input
class="floating"
placeholder="What's your name?"
type="text"
required
maxlength="15"
/>
</form>
<h1 class="hidden" id="greeting"></h1>
</div>
<div class="todo_quote">
<div class="todo_container" id="todo_container">
<form class="todo" id="todo_form">
<input
class="floating"
type="text"
placeholder="Type a task here"
required
/>
</form>
<ul class="todo_list" id="todo_list"></ul>
</div>
<div class="quote" id="quote">
<div id="quote_content"></div>
</div>
</div>
</section>
<section class="right">
<a
target="_blank"
rel="noopener noreferrer"
class="weather_container"
id="weather_container"
>
<img src="" alt="" id="weather_icon" />
<div class="weather_details">
<span id="weather_temp"></span>
<span id="weather_city"></span>
</div>
</a>
</section>
<script src="js/global.js"></script>
<script src="js/username.js"></script>
<script src="js/greeting.js"></script>
<script src="js/api.js"></script>
<script src="js/login.js"></script>
<script src="js/clock.js"></script>
<script src="js/quotes.js"></script>
<script src="js/todo.js"></script>
<script src="js/weather.js"></script>
<script src="js/search.js"></script>
</body>
</html>