-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="X-MAS 컨셉, 나만의 TODOLIST" />
<meta
property="og:description"
content="나만의 todolist를 만들 수 있어요!"
/>
<meta
property="og:image"
content="https://i.pinimg.com/originals/ac/59/8f/ac598f45e507cdd5b347b2b2e7e069ef.png"
/>
<title>Document</title>
</head>
<body>
<div class="font-box">
<h2 id="clock">00:00</h2>
<form class="hidden" id="login-form">
<input
required
maxlength="15"
type="text"
placeholder="What is your name?"
/>
<button>Log In</button>
</form>
<h1 id="greeting" class="hidden"></h1>
<form id="todo-form">
<input
id="toDoText"
required
type="text"
placeholder="Write a To Do and Press Enter"
/>
</form>
<ul id="todo-list"></ul>
<div id="quote">
<span></span>
<span></span>
</div>
<div id="weather">
<span></span>
<span></span>
</div>
</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/weather.js"></script>
<script
src="https://kit.fontawesome.com/f9fb979910.js"
crossorigin="anonymous"
></script>
</body>
</html>