-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animal Wars</title>
<style>
@font-face {
font-family: "Rye";
font-style: normal;
font-weight: 500;
src: url("/fonts/Rye/Rye-Regular.ttf");
}
@font-face {
font-family: "Sancreek";
font-style: normal;
font-weight: 500;
src: url("/fonts/Sancreek/Sancreek-Regular.ttf");
}
#phaser-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body>
<div id="phaser-container">
<div id="phaser-content"></div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>