-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
34 lines (34 loc) · 798 Bytes
/
todo.html
File metadata and controls
34 lines (34 loc) · 798 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>
<head>
<title></title>
<link rel="stylesheet" href="todo.css" />
<link
href="https://fonts.googleapis.com/css?family=Nanum+Myeongjo:400,700,800&display=swap&subset=korean"
rel="stylesheet"
/>
<script type="text/javascript" src="todo.js"></script>
</head>
<body>
<div class="container">
<h1>김선생 To Do List</h1>
<div class="input_wrapper">
<input
class="block"
type="text"
placeholder="화이팅!"
id="input-list"
/>
<button
class="block"
onClick="addTodo()"
id="confirm-button"
class="button-start"
>
Add
</button>
</div>
<div id="items"></div>
</div>
</body>
</html>