-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.23 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.23 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>오늘 할 일 - TODO 앱</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>오늘 할 일</h1>
<p class="date" id="currentDate"></p>
</header>
<div class="input-section">
<input
type="text"
id="todoInput"
placeholder="할 일을 입력하세요..."
autocomplete="off"
>
<button id="addBtn">추가</button>
</div>
<div class="filter-section">
<button class="filter-btn active" data-filter="all">전체</button>
<button class="filter-btn" data-filter="active">진행중</button>
<button class="filter-btn" data-filter="completed">완료</button>
</div>
<ul id="todoList" class="todo-list"></ul>
<div class="footer">
<span id="todoCount">0개의 할 일</span>
<button id="clearCompleted">완료된 항목 삭제</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>