-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.02 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple TODO List</title>
<link rel="stylesheet" href="/simple/index.css" />
</head>
<body>
<section id="container">
<h1 class="title">TODO</h1>
<div class="input-container">
<input type="text" class="todo-input" id="todo-input" />
<input
type="button"
value="저장"
class="save-button"
id="save-button"
/>
</div>
<div class="list-container">
<ul id="todo-list" class="todo-list"></ul>
</div>
<!-- 모달-->
<div id="modal" class="hidden">
<div class="modal-content">
<p>"<span id="task-name"></span>" 저장하시겠습니까?</p>
<button id="cancel-button">취소</button>
<button id="confirm-button">확인</button>
</div>
</div>
</section>
<script src="/simple/index.js"></script>
</body>
</html>