-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.22 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
<!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" />
<meta name="description" content="북레스트 - 독서 관리 애플리케이션입니다." />
<meta name="keywords" content="북레스트, 독서, 노트" />
<meta name="author" content="권기홍" />
<title>Bookrest App</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/moonspam/[email protected]/nanumsquare.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/font-iropke-batang/1.2/font-iropke-batang.css"
/>
<link href="./src/styles/style.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/fb9a82cb4a.js" crossorigin="anonymous"></script>
</head>
<body>
<main id="app">
<div id="page"></div>
<nav id="navigation"></nav>
</main>
<div id="modal">
<div class="modal__content"></div>
</div>
<script src="./dist/app.js"></script>
</body>
</html>