forked from boostcampwm-snu-2026-1/web-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
34 lines (31 loc) · 927 Bytes
/
Copy pathtodo.html
File metadata and controls
34 lines (31 loc) · 927 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todo App</title>
<link rel="stylesheet" href="./todo.css" />
</head>
<body>
<div class="app">
<header class="app-header">
<h1 class="app-title">TODO LIST</h1>
<p class="app-subtitle">오늘 할 일을 정리해보자</p>
</header>
<main class="app-main">
<form class="todo-form" id="todo-form">
<input
type="text"
id="todo-input"
class="todo-input"
placeholder="할 일을 입력하세요"
autocomplete="off"
/>
<button type="submit" class="todo-add-button">추가</button>
</form>
<ul class="todo-list" id="todo-list"></ul>
</main>
</div>
<script src="./todo.js"></script>
</body>
</html>