-
Notifications
You must be signed in to change notification settings - Fork 1
/
mokepon.html
119 lines (87 loc) · 3.61 KB
/
mokepon.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>MOKEPON</title>
<link rel ="stylesheet" href="./styles.css">
</head>
<body>
<p id="parrafo-inn">
Si acaso alguien te pregunta que tipo de juego acabas de jugar, solo dile que es el mismo putísimo juego de la historia, no es simplemente un piedra, papel o tijera, es el mejor piedra, papel o tijera de la puta historia
</p>
<div id="cabecera">
El mejor juego de mokepon del mundo
<span id="taglinea">
La putísima madre que juegazo
</span>
</div>
<section id="selecc-mascotas">
<h1 class="titulo">Mokepon 💧🔥🌵</h1>
<h2 class="subtitulo" > Elige tu mascota: </h2>
<div class="tarjetas">
<input class="botones-de-seleccion" type="radio" name="mascota" id="Hipoge"/>
<label class="tarjeta-de-mokepon" for="Hipoge">
<p>Hipodoge</p>
<img src="./assets/mokepons_mokepon_hipodoge_attack.webp" alt="Hipodoge">
</label>
<input class="botones-de-seleccion" type="radio" name="mascota" id="Capipego"/>
<label class="tarjeta-de-mokepon" for="Capipego">
<p>Capipego</p>
<img src="./assets/mokepons_mokepon_capipepo_attack.webp" alt="Capipego">
</label>
<input class="botones-de-seleccion" type="radio" name="mascota" id="Ratigueya"/>
<label class="tarjeta-de-mokepon" for="Ratigueya">
<p>Ratigueya</p>
<img src="./assets/mokepons_mokepon_ratigueya_attack.webp" alt="Ratigueya">
</label>
<input class="botones-de-seleccion" type="radio" name="mascota" id="Langostelvis"/>
<label class="tarjeta-de-mokepon" for="Langostelvis">
<p>Langostelvis</p>
<img src="./assets/pngegg.png" alt="Langostelvis">
</label>
<input class="botones-de-seleccion" type="radio" name="mascota" id="Tucapalma"/>
<label class="tarjeta-de-mokepon" for="Tucapalma">
<p>Tucapalma</p>
<img src="./assets/tucapalma.png" alt="Tucapalma">
</label>
<input class="botones-de-seleccion" type="radio" name="mascota" id="Pydos"/>
<label class="tarjeta-de-mokepon" for="Pydos">
<p>Pydos</p>
<img src="./assets/pngwing.com.png" alt="Pydos">
</label>
</div>
<button id="boton-mascotas">Seleccionar</button>
</section>
<section id="selecc-ataque">
<h1 class="titulo">Mokepon 💧🔥🌵</h1>
<h2 class="subtitulo"> Elige tu ataque: </h2>
<div class="ataques">
<button id="boton-fuego" class="boton-ataques" >Fuego 🔥</button>
<button id="boton-agua" class="boton-ataques">Agua 💧</button>
<button id="boton-tierra" class="boton-ataques" >Tierra 🌍</button>
</div>
<div id ="mensaje">
<p id="resultado"> Mucha suerte </p>
<section id="reiniciar">
<button id="boton-reiniciar">Reiniciar</button>
</section>
</div>
<div class="ataquess" >
<div class="jugador">
<span id="vidas_Jugador"> 3 </span>
<span id="nombre-mascota-jugador"> </span>
<p id="ataqueDelJugador"> </p>
</div>
<div class="enemigo">
<span id="vidas_Enemigo"> 3 </span>
<span id="nombre-mascota-enemigo"> </span>
<p id="ataqueDelEnemigo"> </p>
</div>
</div>
</section>
<script src ="./js/mokepon.js"> </script>
<p id="parrafo-inn">
Saludos a todos !
</p>
</body>
</html>