forked from likelionsg/11th_JS_PART1_Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 795 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 795 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
<!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>Document</title>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="todo_container">
<h1 id="todo_lifeQuote">
"내일이 최악의 날이더라도, 나는 오늘을 살겠노라.", 호라티우스
</h1>
<form class="todo_generator">
<input type="text" placeholder="할 일을 입력하세요" />
</form>
<h2 id="todo_listTitle">해치워보자!!</h2>
<ul class="todo_lists"></ul>
</div>
<script src="todo.js"></script>
</body>
</html>