-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (84 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<title>YourHome</title>
<script
src="https://kit.fontawesome.com/baaa960382.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<div id="weather">
<img />
<span></span>
<span></span>
<span></span>
</div>
</header>
<main>
<form class="todo clear">
<span class="todo-setting"><i class="fa-solid fa-gears"></i></span>
<h3>TODO</h3>
<ul>
<li class="todo-checked">
<span>todo list 구현 완료하기</span>
<span>✔</span>
</li>
<li>
<span>코딩테스트 인강 5개 듣기</span>
</li>
<li>
<span>NCS 기출 1개 완료</span>
</li>
</ul>
<input type="text" />
</form>
<div class="time">
<div class="clock-container">
<h4 class="ampm">AM</h4>
<h1 id="clock"></h1>
</div>
<h1 class="hidden" id="greeting"></h1>
</div>
<form id="login-form">
<h3>이름이 어떻게 되시나요?</h3>
<input required maxlength="15" type="text" />
<button>Log in</button>
</form>
<form id="goal-form" class="hidden">
<h5>오늘의 주요 목표는 무엇인가요?</h5>
<input type="text" />
<div class="goal-container">
<div class="btn clear">
<i class="fa-solid fa-ellipsis fa-bounce"></i>
</div>
<div class="menu-box clear">
<span class="edit_btn">수정</span>
<span class="del_btn">삭제</span>
</div>
<h3></h3>
</div>
</form>
</main>
<footer>
<ul id="todo-list"></ul>
<div id="quote">
<span></span>
<span></span>
</div>
<div id="photo-who">
<span>Photo By</span>
<span class="photographer"></span>
<span>on Unsplash</span>
</div>
</footer>
<script src="./config.js"></script>
<script src="./app.js"></script>
<script src="./quotes.js"></script>
<script src="./background.js"></script>
<script src="./todo.js"></script>
<script src="./weather.js"></script>
</body>
</html>