-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 1.01 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="public/favicon.png">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Proyecto Final - El Mundo de Floresta</title>
<style>
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #000000;
}
</style>
</head>
<body>
<div id="phaser_container"></div>
<!-- Si tienes node_modules, usa este -->
<!-- <script src="./node_modules/phaser/dist/phaser.min.js"></script> -->
<!-- Si no usas node_modules, usa este -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.55.2/phaser.min.js" integrity="sha512-kg6fSrg6FkD9Ua02PzuA289KatVkTp6HdiFrSKwnz1bKBeKe5JG54rNeYZeghYO/I4ka49rb9H/9Ezcq9Se3iQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./src/main.js" type="module"></script>
</body>
</html>