-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (41 loc) · 882 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
45
46
47
48
49
50
51
52
53
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/phaser@3.15.1/dist/phaser-arcade-physics.min.js">
</script>
</head>
<body>
<h1>Title</h1>
<div id="app"></div>
<script type="text/javascript">
var config = {
type: Phaser.AUTO,
width: 800,
height: 600,
scene: {
preload: preload,
create: create,
update: update
}
};
var game = new Phaser.Game(config);
function preload ()
{
}
function create ()
{
}
function update ()
{
}
</script>
<h1>Testing</h1>
<div class="container">
<div class="col-10 border">
Stuff in here.
</div>
</div>
<a href="../page.html"><p>Go to Page</p></a>
<!--Code to get images from github-->
<img src="https://github.com/1nakata/phaser_gasp/blob/master/assets/sky.png?raw=true">
</body>
</html>