-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 2.57 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<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>LET'S START!</title>
<link rel="shortcut icon" sizes="16x16 32x32 64x64" href="img/icon.PNG" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1 id="title">Life Goes On···</h1>
<h2 id="clock">00:00:00</h2>
<form class="hidden" id="login-form">
<input
required
maxlength="15"
type="text"
placeholder="What is your name?"
/>
<input type="submit" value="OK!" />
</form>
<div id="big-input">
<div id="input-border">
<h1 id="greeting">✧ To do List</h1>
<form id="todo-form" class="forms">
<input
type="text"
placeholder="Write a To Do and Press Enter"
required
/>
</form>
<ul id="todo-list" class="list"></ul>
</div>
<div id="plan-border">
<h1 id="greeting">✧ Monthly Plan</h1>
<form id="plan-form" class="forms">
<input
type="text"
placeholder="Write a To Do and Press Enter"
required
/>
</form>
<ul id="plan-list" class="list"></ul>
</div>
</div>
<div id="quote">
<span></span>
<span></span>
</div>
<div id="weather">
<span></span>
<span></span>
</div>
<div class="bookmark">
<a href="https://nomadcoders.co/dashboard">
<img class="bookmark-img" src="https://nomadcoders.co/m.svg" />
</a>
<a href="https://twitter.com/">
<img class="bookmark-img" src="img/twitte.png" />
</a>
<a href="http://youtube.com">
<img class="bookmark-img" src="img/youtube.png" />
</a>
<a href="https://github.com/">
<img
class="bookmark-img"
src="https://img.icons8.com/small/452/github.png"
/>
</a>
<a href="https://slid.cc/docs">
<img
class="bookmark-img"
src="https://image.rocketpunch.com/company/146300/jusighoesa-bibeuriji_logo_1619676678.png?s=400x400&t=inside"
/>
</a>
</div>
<script src="js/greeting.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/monthly.js"></script>
<script src="js/weather.js"></script>
<script src="js/api.js"></script>
</body>
</html>