-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (36 loc) · 1.36 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
50
51
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>todo list </title>
<!--브라우저 스타일 초기화-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reset-css@5.0.1/reset.min.css" />
<!-- 폰트어썸 아이콘 -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./index.css">
<script src="./index.js" defer></script>
</head>
<body>
<div class="todo__wrapper">
<div id="todolist">
<div class="main__title">
<h1>To do list</h1>
</div>
<div class="input__section">
<div>
<input type="text" class="todoItem" autofocus="true"placeholder="할 일을 입력하세요.">
<button type="button" class="input__button">
<i class="fas fa-plus-circle"></i></button>
</div>
</div>
<div class="todolist__wrap">
<ul id="todo__list">
</ul>
</div>
</div>
</div>
</body>
</html>