-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.48 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
<!doctype html>
<html lang="en">
<head>
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
<meta name="description" content="My Awesome App description" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>AB - 세상의 모든 질문, AB로 답하다</title>
<style>
@font-face {
font-family: 'Pretendard Variable';
font-style: normal;
font-weight: 45 920;
src: local('Pretendard Variable'), local('Pretendard Variable');
src: url('./src/assets/fonts/PretendardVariable.woff2') format('woff2-variations');
font-display: block;
}
@font-face {
font-family: 'Montserrat Medium';
font-style: medium;
font-weight: 500;
src: local('Montserrat Medium'), local('Montserrat Medium');
src: url('./src/assets/fonts/MontserratMedium.woff2') format('woff2');
font-display: block;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>