-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (44 loc) · 1.07 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="en">
<head>
<meta charset="UTF-8">
<title>Akeneo Game Jam 4</title>
<style>
@font-face {
font-family: '3dventuremedium';
src: url('assets/3dventure-webfont.woff2') format('woff2'),
url('assets/3dventure-webfont.woff') format('woff');
}
body {
font-family: '3dventuremedium';
background: #000000;
color: #ffffff;
}
canvas {
margin: auto;
cursor: none;
}
h1 {
font-weight: normal;
text-align: center;
font-size: 2.5em;
}
img {
height: 32px;
width: 32px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>
On laisse pas bebe dans un coin
</h1>
<div class="app">
<div id="gameDiv"></div>
</div>
<script type="text/javascript" src="lib/phaser.js"></script>
<script type="text/javascript" src="lib/beepbox_synth.js"></script>
<script type="text/javascript" src="build/bundle.js"></script>
</body>
</html>