-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (83 loc) · 2.46 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
<!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="img/favicon.ico" />
<link rel="icon" href="img/favicon.ico" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<title>saewa's Todolist</title>
</head>
<body>
<main>
<div class="loader">
<div class="textbox">
<img src="img/logo.png" alt="bts logo" />
<p class="eng">I Purple U</p>
</div>
</div>
<audio src="src/christmas_tree.mp3" autoplay loop controls></audio>
<section id="clock">
<span></span>
<h2></h2>
<p></p>
</section>
<div id="weather">
<span></span>
<span></span>
</div>
<section class="login-wrapper">
<form class="login-form hidden">
<h2>Welcome to the BTS To do list</h2>
<div class="login-form__input">
<input
required
maxlength="15"
type="text"
placeholder="What is your name?"
/>
<input type="submit" id="btn" value="Log In" />
</div>
</form>
<h1 id="greeting" class="hidden"></h1>
</section>
<section id="wrapper">
<form id="todo-form">
<h3>To Do List</h3>
<div class="todo-form__input">
<input
type="text"
placeholder="Write a to do and press enter"
required
/>
<input type="submit" id="todo-btn" value="Enter" />
</div>
</form>
<div class="todo-list">
<p><img src="img/bts08.jpg" alt="bts img" /></p>
<ul id="todo-list"></ul>
</div>
</section>
</main>
<footer>
<div id="quotes">
<span></span>
<span class="kor"></span>
<span></span>
</div>
<small>Copyright © BTS todolist All Rights Reserved.</small>
</footer>
<script src="js/loading.js"></script>
<script src="js/login.js"></script>
<script src="js/background.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>
</body>
</html>