-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (36 loc) · 1.25 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>To-Do List</title>
</head>
<body>
<header>
<h1>할 일 목록</h1>
</header>
<main>
<form id="formTodo">
<label for="inputTodo">할 일</label>
<input type="text" id="inputTodo" required>
<label for="inputAlarm">알람 시간(선택)</label>
<input id="inputAlarm" type="datetime-local">
<label for="inputTag">태그(선택)</label>
<input id="inputTag" type="text" placeholder="띄어쓰기 구분">
<button id="btnSubmit" type="submit">추가</button>
<!-- input의 유효성 검사 결과 에러 메시지를 표시합니다. -->
<div id="msgError"></div>
</form>
<div class="counter">
<span>할 일: 0개</span>
<span>완료: 0개</span>
<span>미완료: 0개</span>
</div>
<ul id="listTodo">
<!-- 자바스크립트 코드로 동적으로 작성됩니다. -->
</ul>
</main>
</body>
</html>