-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!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>Greeny Notepad</title>
<link href="https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css" rel="stylesheet">
<link rel="stylesheet" href="https://uicdn.toast.com/editor/latest/toastui-editor.min.css" />
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/style.css">
<script src="https://uicdn.toast.com/editor/latest/toastui-editor-all.min.js"></script>
</head>
<body>
<h1 class="a11y-hidden">그리니 메모장</h1>
<!-- main -->
<main>
<!-- editor -->
<section class="editor">
<h2 class="a11y-hidden">메모 작성 에디터</h2>
<form id="memo-form" action="#">
<label for="title" class="a11y-hidden">메모 제목</label>
<input type="text" name="title" id="title" class="inp-title" placeholder="제목을 입력하세요" required />
<div id="editor"></div>
<button type="submit" id="memo-add-button" class="btn-add">작성하기</button>
</form>
</section>
<!-- // editor -->
<!-- caledar -->
<section class="calendar">
<h2 class="a11y-hidden">달력</h2>
<table id="calendar-content">
<caption>
<button type="button" class="calendar-button-prev">◀</button>
<time>
<span id="calendar-year-month"></span>
</time>
<button type="button" class="calendar-button-next">▶</button>
</caption>
<tbody></tbody>
</table>
</section>
<!-- // caledar -->
<!-- display -->
<section class="display">
<h2 class="a11y-hidden">메모 리스트 보기</h2>
<div class="display-date">
<span class="date"></span>
<span class="day"></span>
</div>
<ul id="memo-list"></ul>
</section>
<!-- // display -->
</main>
<!-- // main -->
<script src="./js/app.js" type="module"></script>
<script src="./js/calendar.js" type="module"></script>
</body>
</html>