-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (40 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<style>
*{
font-family: "Sedan SC", serif;
letter-spacing: 1px;
font-weight: 500;
font-style: normal;
}
.font-cls2{
font-family: "Share Tech Mono", monospace;
font-weight: 400;
font-style: normal;
}
.font-cls3{
font-family: "LXGW WenKai TC", cursive;
font-weight: 400;
font-style: normal;
}
</style>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jersey+15+Charted&family=LXGW+WenKai+TC&family=Sedan+SC&family=Share+Tech+Mono&family=Tiny5&display=swap" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<script src="https://unpkg.com/earcut@2.1.1/dist/earcut.min.js"></script>
<!--
<script type="module">
import earcut from 'https://cdn.jsdelivr.net/npm/earcut/+esm';
</script> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Roll Rush</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- <script src="https://cdn.jsdelivr.net/gh/lokesh-katari/roulette/app.js"></script> -->
</body>
</html>