-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
35 lines (35 loc) · 1.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/public/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Noto Sans KR Font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:[email protected]&display=swap"
rel="stylesheet"
/>
<!-- Jalnan Gothic Font -->
<style>
@font-face {
font-family: 'JalnanGothic';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/JalnanGothic.woff')
format('woff');
font-weight: normal;
font-style: normal;
}
</style>
<title>깔끔한방</title>
<script
type="text/javascript"
src="//dapi.kakao.com/v2/maps/sdk.js?appkey=%VITE_KAKAO_MAP_API_KEY%&libraries=services,clusterer,drawing"
></script>
<script src="https://cdn.iamport.kr/v1/iamport.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>