-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
44 lines (36 loc) · 808 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
43
44
<!DOCTYPE html>
<html>
<head>
<style>
html {
width: 100%;
}
body {
background-color: #000;
margin: 0 0;
padding: 0;
font-family: "Droid Sans", "sans-serif";
}
.center {
width: 50%;
display: block;
margin: auto;
padding: 0;
}
#canvas {
padding: 0;
margin: auto;
display: block;
border: 1px solid white;
font-family: 'Press Start 2P';
margin-top: 50px;
}
</style>
</head>
<body>
<div class="center">
<canvas id="canvas" width="700" height="700"></canvas>
</div>
<script src="./lib/es6_global/src/Main.js"></script>
</body>
</html>