-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.42 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
<!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="css/Style.css">
<title>TODO</title>
<style>
/* Einglish */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,900&family=Staatliches&display=swap');
/* Korean */
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
</style>
</head>
<body>
<div class="Mainframe">
<div class="title">
<h2>T O D O</h2>
<div class="subtitle">
<!-- <span class="subtitle">2020-6-21</span> -->
<div class="content">
<form class="js-todoForm">
<input type="text" id="k-font" class="input-box" placeholder="클릭하여 목록작성" autocomplete="off">
<input type="button" class="add" value="+" id="add">
</form>
<ul class="js-todoList"></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<h3 id="k-font" style="text-align: center">-페이지 넘어가는 기능을 구현중..(현재로썬 8개가 최대)<br>-Local Strage 기능을 지원해요!<br>체크박스 빼구요,,T^T</h3>
<script src="js/todo.js"></script>
</body>
</html>