-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbreak.html
More file actions
96 lines (95 loc) · 2.4 KB
/
Copy pathbreak.html
File metadata and controls
96 lines (95 loc) · 2.4 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
<link
rel="preload"
href="/fonts/Silkscreen-Regular.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/Silkscreen-Bold.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/RockSalt-Regular.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/Bangers-Regular.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/SymbolsNerdFont-Regular.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/SymbolsNerdFontMono-Regular.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous"
/>
<style>
@font-face {
font-family: "Silkscreen";
src: url("/fonts/Silkscreen-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Silkscreen";
src: url("/fonts/Silkscreen-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Rock Salt";
src: url("/fonts/RockSalt-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Bangers";
src: url("/fonts/Bangers-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "SymbolsNF";
src: url("/fonts/SymbolsNerdFontMono-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal;
font-display: block;
}
</style>
<title>Break — worxbend</title>
</head>
<body>
<div id="app">
<div id="pixi-container"></div>
</div>
<script type="module" src="/src/break.ts"></script>
</body>
</html>