-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (31 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>econoBeep</title>
<meta
name="description"
content="econoBeep은 ECONOVATION 관리부가 소유한 기자재 대여 및 관리 시스템입니다."
/>
<meta charset="utf-8" />
<link rel="icon" href="/logo.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1.0, viewport-fit=cover, maximum-scale=1.0, user-scalable=no"
/>
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="/logo.png" />
<link rel="manifest" href="/manifest.json" />
<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:wght@100;300;400;500;700&family=Rajdhani:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css" />
</head>
<body>
<div id="root"></div>
<div id="modal"></div>
</body>
<script type="module" src="/src/index.jsx"></script>
</html>