-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.67 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Shisetsu Viewer" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="preload" as="font" type="font/woff2" href="/fonts/noto-sans-jp-v28-latin_japanese-700.woff2" crossorigin />
<link rel="preload" as="font" type="font/woff2" href="/fonts/noto-sans-jp-v28-latin_japanese-regular.woff2"
crossorigin />
<title>Shisetsu Viewer</title>
<style>
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(""), url("/fonts/roboto-v27-latin-regular.woff2") format("woff2");
}
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
font-display: swap;
src: local(""), url("/fonts/roboto-v27-latin-700.woff2") format("woff2");
}
@font-face {
font-family: "Noto Sans JP";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(""), url("/fonts/noto-sans-jp-v28-latin_japanese-regular.woff2") format("woff2");
}
@font-face {
font-family: "Noto Sans JP";
font-style: normal;
font-weight: 700;
font-display: swap;
src: local(""), url("/fonts/noto-sans-jp-v28-latin_japanese-700.woff2") format("woff2");
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>