-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 872 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
<html>
<head>
<meta charset='utf-8'>
<style>
@import url(style.css);
p.highlight {
color: red;
}
svg {
background-color: rgb(41, 41, 36);
position:fixed; top:0; left:0; height:100%; width:100%
}
body {
display: flex;
margin: 0;
justify-content: center;
height: 100%;
width:100%;
}
</style>
<script src="dist/svgelement.js"></script>
<script src="dist/observable.js"></script>
<script src="dist/index.es.js"></script>
</head>
<body>
<div style=" height: 100%;
width:100%;">
<!-- <h1>Asteroid game</h1> -->
<svg id="canvas" />
</div>
</body>
</html>