-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/images/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preload" as="font" type="font/woff2" href="/fonts/MPLUSRounded1c/MPLUSRounded1c-Medium.woff2" crossorigin />
<link rel="preload" as="font" type="font/woff2" href="/fonts/NotoSansMono/NotoSansMono-Regular.woff2" crossorigin />
<title>Matz葉がにロボコン 書き込みツール</title>
<style>
@font-face {
font-family: "M PLUS Rounded 1c";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("/fonts/MPLUSRounded1c/MPLUSRounded1c-Medium.woff2") format("woff2");
}
@font-face {
font-family: "Noto Sans Mono";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/fonts/NotoSansMono/NotoSansMono-Regular.woff2") format("woff2");
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>