-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 1.79 KB
/
index.html
File metadata and controls
82 lines (77 loc) · 1.79 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/k_logo.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<link
rel="preload"
href="/fonts/Pretendard-Regular.woff2"
as="font"
type="font/woff2"
crossorigin />
<link
rel="preload"
href="/fonts/Pretendard-Medium.woff2"
as="font"
type="font/woff2"
crossorigin />
<link
rel="preload"
href="/fonts/Pretendard-Bold.woff2"
as="font"
type="font/woff2"
crossorigin />
<style>
@font-face {
font-family: 'Pretendard';
font-weight: 400;
font-style: normal;
font-display: swap;
src: url('/fonts/Pretendard-Regular.woff2') format('woff2');
}
@font-face {
font-family: 'Pretendard';
font-weight: 500;
font-style: normal;
font-display: swap;
src: url('/fonts/Pretendard-Medium.woff2') format('woff2');
}
@font-face {
font-family: 'Pretendard';
font-weight: 700;
font-style: normal;
font-display: swap;
src: url('/fonts/Pretendard-Bold.woff2') format('woff2');
}
html,
body {
margin: 0;
padding: 0;
font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
line-height: 1.5;
color: #212329;
background-color: #ffffff;
}
#root {
min-height: 100vh;
width: 100%;
}
* {
box-sizing: border-box;
}
</style>
<title>Knock</title>
</head>
<body>
<div id="root"></div>
<script
type="module"
src="/src/main.tsx"></script>
</body>
</html>