-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
35 lines (30 loc) · 871 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google-site-verification" content="pi8qBei6qHxHyGxm9Eh4WDhPwxU672uIJmfdIqcgIGs" />
<title>Islands</title>
<script src="js/lib/perlin.js"></script>
<script src="js/lib/phaser.js"></script>
<style>
body {
margin: 0px;
width: 100vw;
height: 100vh;
background: black;
display: flex;
justify-content: center;
}
canvas {
align-self: center;
background: red;
}
</style>
<script src="js/game.js"></script>
</head>
<body>
</body>
</html>