-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 2.23 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 2.23 KB
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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
--> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/index.css" />
<link rel="icon" type="image/png" href="./assets/images/logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap"
rel="stylesheet"
/>
<title>FACCIANDO</title>
<style>
.left img {
position: absolute;
top: 50;
left: 0;
width: 160px;
height: 100%;
opacity: 0.1;
z-index: -1;
/* background-color: #ff1515; */
}
</style>
</head>
<body>
<!-- imagen en la izquierda -->
<div class="left">
<img src="./assets/images/logos/ULEAM_blanco.png" alt="logo" />
</div>
<!-- <h1>My first game in phaser</h1> -->
<!-- <footer><div id=version></div></footer> -->
<!-- cdn de phaser -->
<!-- <script src="//cdn.jsdelivr.net/npm/phaser@3.55.2/dist/phaser.js"></script>
<script src="//cdn.jsdelivr.net/npm/phaser@3.55.2/dist/phaser.min.js"></script> -->
<script src="//cdn.jsdelivr.net/npm/phaser@3.60.0/dist/phaser.js"></script>
<script src="//cdn.jsdelivr.net/npm/phaser@3.60.0/dist/phaser.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- cdn de responsive voice -->
<script src="https://code.responsivevoice.org/responsivevoice.js?key=DKQWcTMG"></script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<!-- <script src="https://cdn.socket.io/4.7.2/socket.io.esm.min.js"></script> -->
<!-- Toastify js -->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/toastify-js"
></script>
<!-- cdn de sweet alert -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="./index.js" type="module"></script>
</body>
</html>