-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 890 Bytes
/
index.html
File metadata and controls
34 lines (31 loc) · 890 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>할 일 목록 - Fetch 연습</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>할 일 목록</h1>
<form id="todo-form">
<input
type="text"
id="todo-input"
placeholder="할 일을 입력하세요"
required
/>
<button type="submit">추가</button>
</form>
<ul id="todo-list"></ul>
</div>
<!--
본인의 레벨에 맞는 파일을 선택하세요:
Level 1 (쉬움) → main-level1.js : fetch 함수만 구현
Level 2 (보통) → main-level2.js : DOM 조작 + fetch 구현
Level 3 (어려움) → main-level3.js : 전부 직접 구현
-->
<script src="main-level3.js"></script>
</body>
</html>