-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (42 loc) · 2.17 KB
/
index.html
File metadata and controls
65 lines (42 loc) · 2.17 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
62
63
64
65
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="juego, roll, rpg, dragon, guerrero, mago, luchas">
<title>Lords of the Fallen</title>
<meta name="description" content="LORDS OF THE FALLEN - Juego de batallas.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="./assets/img/logos/logoPrincipal.png" type="image/x-icon">
</head>
<body>
<div id="musicaJuego">
<audio src="./assets/musica/soundtrackPrincipal.mp3" autoplay="autoplay" loop="loop"></audio>
</div>
<main class="bannerPrincipal" id="nuevoElemento">
<div class="container text-center">
<div class="row contenedorPrimero">
<div class="col-12">
<img class="logoCarrusel" src="./assets/img/logos/logoPrincipal.png" alt="Logo Juego">
</div>
<div class="col-12">
<img class="btnJugar" id="jugar" src="./assets/img/btns/btnStart.png" alt="Boton de Inicio">
<div class="position-relative">
<div class="position-absolute bottom-0 end-0">
<img class="btnUltimoHeroe" id="ultimoHeroe" src="./assets/img/btns/btnLastCharacter.png" alt="Boton ultimo Heroe">
</div>
</div>
</div>
</div>
</div>
</main>
<script src="main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>
<!--
-->