-
Notifications
You must be signed in to change notification settings - Fork 0
/
juego.html
35 lines (28 loc) · 939 Bytes
/
juego.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
<DOCTYPE html>
<html>
<head>
<title>Challenge 2 - Juego ahorcado</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="logo">
<img src="img/logo.png">
</div>
<div class="hombre-ahorcado">
<img id="hombre" alt="hombre ahorcado">
</div>
<div class="adivinado">
</div>
<div class="errado">
</div>
<div class="botones">
<input type="button" class="nuevo" value="Nuevo juego" onclick="nuevoJuego()"/>
<!-- <input type="button" value="Desistir" /> -->
<!-- <button class="desistir"><a href="./index.html">Desistir</a></button> -->
<input type="button" onclick="location.href='./index.html'";" class="desistir" value="Desistir" />
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>