-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (100 loc) · 2.78 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<link
as="font"
crossorigin="anonymous"
href="/fonts/TT_Interphases_Pro_Regular.woff2"
rel="preload"
type="font/woff2"
/>
<link
as="font"
crossorigin="anonymous"
href="/fonts/TT_Interphases_Pro_Medium.woff2"
rel="preload"
type="font/woff2"
/>
<link
as="font"
crossorigin="anonymous"
href="/fonts/TT_Interphases_Pro_DemiBold.woff2"
rel="preload"
type="font/woff2"
/>
<link
as="font"
crossorigin="anonymous"
href="/fonts/TT_Interphases_Pro_Bold.woff2"
rel="preload"
type="font/woff2"
/>
<link
as="font"
crossorigin="anonymous"
href="/fonts/TT_Interphases_Pro_ExtraBold.woff2"
rel="preload"
type="font/woff2"
/>
<style>
/* regular */
@font-face {
font-family: "TT Interphases Pro";
src:
url("/fonts/TT_Interphases_Pro_Regular.woff2") format("woff2"),
url("/fonts/TT_Interphases_Pro_Regular.woff") format("woff");
font-weight: 400;
font-style: normal;
font-display: swap;
}
/* medium */
@font-face {
font-family: "TT Interphases Pro";
src:
url("/fonts/TT_Interphases_Pro_Medium.woff2") format("woff2"),
url("/fonts/TT_Interphases_Pro_Medium.woff") format("woff");
font-weight: 500;
font-style: normal;
font-display: swap;
}
/* demi bold */
@font-face {
font-family: "TT Interphases Pro";
src:
url("/fonts/TT_Interphases_Pro_DemiBold.woff2") format("woff2"),
url("/fonts/TT_Interphases_Pro_DemiBold.woff") format("woff");
font-weight: 600;
font-style: normal;
font-display: swap;
}
/* bold */
@font-face {
font-family: "TT Interphases Pro";
src:
url("/fonts/TT_Interphases_Pro_Bold.woff2") format("woff2"),
url("/fonts/TT_Interphases_Pro_Bold.woff") format("woff");
font-weight: 700;
font-style: normal;
font-display: swap;
}
/* extra bold */
@font-face {
font-family: "TT Interphases Pro";
src:
url("/fonts/TT_Interphases_Pro_ExtraBold.woff2") format("woff2"),
url("/fonts/TT_Interphases_Pro_ExtraBold.woff") format("woff");
font-weight: 800;
font-style: normal;
font-display: swap;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>