-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODOLIST.HTML
31 lines (30 loc) · 1.03 KB
/
TODOLIST.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="TODOLIST.CSS" />
<title>To do List</title>
</head>
<body>
<h1 id="title">To Do List</h1>
<div class="container">
<div class="input-container">
<form id="frm" onsubmit="return false;">
<!--form의 default submit을 제거해주는 코드-->
<input id="input" type="text" placeholder="할 일을 입력하세요." />
<input id="add-button" type="submit" value="추가하기" />
<button class="Clear">전체 삭제</button>
<!--form 형태로 엔터 키를 눌러도 작동하게 만들어보기-->
</form>
</div>
<div class="list-container">
<h3>할 일 목록</h3>
<ul id="list">
<!--예시 입력하고 새로 입력하면 지워지도록 기능 추가(?)-->
</ul>
</div>
</div>
</body>
<script src="TODOLIST.JS"></script>
</html>