forked from sinji2102/css-study-feedback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (34 loc) · 964 Bytes
/
Copy pathindex.html
File metadata and controls
41 lines (34 loc) · 964 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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>2025년 3월 27일</h1>
<h2>목요일</h2>
<p>할 일 N개 남음</p>
<div class="task">
<input type="checkbox">
<label>아침 산책</label>
<button>
<img src="./imgages/802f20ec26c6f2e1e9e786d60ebffae2.png" alt="삭제">
</button>
</div>
<div class="task">
<input type="checkbox">
<label>오늘의 뉴스 읽기</label>
<button>
<img src="./imgages/802f20ec26c6f2e1e9e786d60ebffae2.png" alt="삭제">
</button>
</div>
<div class="add-task">
<input type="text" placeholder="할 일을 입력해주세요.">
<button>+</button>
</div>
</div>
</body>
</html>