-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.5 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
<!DOCTYPE html>
<html lang="ko">
<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>Simple ToDos</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<h1 class="todo-title">T O D O</h1>
<div class="todo-container">
<div class="input-form">
<button class="complete-all-btn">🦁</button>
<input type="text" class="todo-input" placeholder="할 일을 입력하세요!">
<button class="enter">⏎</button>
</div>
<ul class="todo-list">
<!-- <li class="todo-item">
<button class="checkbox">✔︎</button>
<div class="content">할일1</div>
<button class="delBtn">✕</button>
</li>
<li class="todo-item checked">
<button class="checkbox">✔︎</button>
<div class="content">할일2</div>
<button class="delBtn">✕</button>
</li> -->
</ul>
<div class="todo-top">
<div class="left-items">오늘 할 일이 0개 남았습니다</div>
</div>
</div>
</div>
<!-- <script src="clock.js"></script> -->
<script src="todo.js"></script>
<!-- <script src="todo_simple.js"></script> -->
</body>
</html>