-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (40 loc) · 1.02 KB
/
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 lang="">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SDD GameJam 1</title>
<style>
body {
background-color: #1c1c1c;
}
canvas {
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 600px;
height: 600px;
display: block;
position: absolute;
}
</style>
</head>
<body>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('webfont', '1');
google.setOnLoadCallback(function() {
WebFont.load({
google: {
families: ['Montserrat', 'Montserrat:bold']
}
});
});
</script>
<script src="dist/helpers.js"></script>
<script src="dist/game.js"></script>
</body>
</html>