-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 963 Bytes
/
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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Elemental Breakout</title>
<link rel="shortcut icon" href="#" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" href="styles.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
/* cursor: none; */
}
body {
background-color: black;
}
@font-face {
font-family: "vcr-black";
src: url("./assets/font/vcr-black/vcr-black.ttf") format("truetype");
}
button {
font-family: "vcr-black";
}
</style>
</head>
<body>
<div id="app" style="position: relative"></div>
<script type="module" src="src/main.ts"></script>
</body>
</html>