-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="./styles/index.css">
<link rel="icon" href="./imagenes/FavIcon.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=Skranji:wght@700&display=swap" rel="stylesheet">
<title>Clash Royale</title>
</head>
<body>
<div class="container" id="container">
<button class="btnRetroceder" disabled id="btnRetroceder"><</button>
<img src="./imagenes/golem.png" alt="imagenPrueba" class="imagen" id="imagen">
<button class="btnAvanzar" id="btnAvanzar" >></button>
<div class="divAbajo" id="divAbajo">
<button class="btnNombre" id="btnNombre">Golem</button>
</div>
</div>
<div class="container" id="detalle"></div> <!--colocar style para al cargar detalle este oculto-->
<script src="./scripts/main.js" type="module"></script>
<script src="./data/data.js" type="module"></script>
</body>
</html>