-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjuego.html
42 lines (36 loc) · 1.04 KB
/
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
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Ahorcado</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div style="text-align:center; margin: 0px 0px;">
<table align="center" cellspacing="25">
<tr>
<td rowspan=3>
<input type="button" value="Reiniciar" class="btn" id="Reiniciar" onclick="location.reload()">
</td>
<td rowspan=3>
<a type="button" href="index.html" class="btn" id="Volver">Volver</a>
</td>
</tr>
</table>
</div>
<div class="padre">
<div class="hijo">
<canvas id="ahorcado" height="440px" width="1000px"></canvas>
</div>
</div>
<div class="padre" style="text-align: center">
<div class="hijo" style="text-align: center">
<p> Desarrollado por Carlos Zárate</p>
</div>
</div>
<script src="canvas.js"></script>
<script src="ahorcado.js"></script>
</body>
</html>