forked from inureyes/gradios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (31 loc) · 645 Bytes
/
index.html
File metadata and controls
44 lines (31 loc) · 645 Bytes
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" />
<title>Gradios JS</title>
<script type="text/javascript" src="js/phaser.min.js"></script>
<script type="text/javascript" src="game-logic.js"></script>
<style type="text/css">
@font-face {
font-family: NintendoFont;
src: url(nintendo.otf);
}
body {
margin: 0;
background: #030303;
}
canvas {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
margin-top: 80px;
display: block;
border: solid 3px #222;
}
</style>
</head>
<body>
<!-- game gets rendered in here from game-logic.js -->
</body>
</html>