forked from mariasmoUN/Juego-del-Ahorcado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
personajes.html
47 lines (43 loc) · 1.55 KB
/
personajes.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
<!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="/stylesheet/reset.css">
<link rel="stylesheet" href="/stylesheet/style.css">
<title>Juego del Ahorcado</title>
</head>
<body>
<header>
<h1 class="titulo2">Escoge un personaje</h1>
</header>
<main>
<section class="contenedor-cards">
<div class="cards">
<div class="card1"></div>
<h1>Arlequin</h1>
<img src="/image/arlequin.png" alt="arlequin" class="arlequin">
</div>
<div class="cards">
<div class="card2"></div>
<h1>Hechicero</h1>
<img src="/image/hechicero.png" alt="hechicero" class="hechicero">
</div>
<div class="cards">
<div class="card3"></div>
<h1>Caballero</h1>
<img src="/image/caballero.png" alt="caballero" class="caballero">
</div>
</section>
<section>
<div class="contenedor-botones">
<div class="div-boton"></div>
<a href="/juego.html"><button class="b-comenzar">Comenzar!</button></a>
<a href="/index.html"><button class="b-regresar">Regresar</button></a>
</div>
</section>
</main>
<script src="/js/script.js"></script>
</body>
</html>