-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.26 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
28
29
30
31
32
33
34
35
36
37
38
<!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>
<main>
<div style="text-align:center; margin: 10px 10px;">
<h1 class="titulo">Ahorcado</h1>
<a type="button" href="juego.html" class="btn" id="iniciar-juego"> INICIAR JUEGO</a>
</div>
<div style="text-align:center">
<div style="text-align:center; margin: 10px 0px;">
</div>
<div style="text-align:center; margin: 10px 0px;">
</div>
<div class="div" >
<input class="text-input" type="text" id="input-nueva-palabra" placeholder="Escriba una nueva palabra" onkeypress="return (event.charCode > 64 && event.charCode < 91)" autocomplete="off">
<button class="btn" id="nueva-palabra" >AGREGAR PALABRA</button>
</div>
<div class="padre" style="text-align: center">
<div class="hijo" style="text-align: center">
<p> Desarrollado por Carlos Zárate</p>
</div>
</div>
</main>
<script type="text/javascript" src="canvas.js"></script>
<script type="text/javascript" src="ahorcado.js"></script>
</body>
</html>