-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
45 lines (41 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="google-site-verification"
content="%VITE_GOOGLE_VERIFICATION_ID%"
/>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Preload font to use in Phaser.js, otherwise it will be taken as a fallback (I don't know the reason) -->
<link
rel="preload"
as="font"
type="font/ttf"
href="/fonts/BitBold.ttf"
crossorigin
/>
<link rel="stylesheet" href="/styles/global.css" />
<title>Towers of Hanoi</title>
</head>
<body>
<main>
<div id="hanoi-container"></div>
<div id="game-controls">
<a
class="github-button"
href="https://github.com/pr0mming/TowerHanoi"
data-color-scheme="no-preference: light_high_contrast; light: light; dark: light;"
data-size="large"
data-show-count="true"
aria-label="Star pr0mming/TowerHanoi on GitHub"
>Star</a
>
</div>
</main>
<script type="module" src="/src/main.ts"></script>
<!-- Github Button -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>