-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.46 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 href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link rel="shortcut icon" href="imagenes/ahorcado.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div style="text-align:center; margin: 45px 0px;">
<h1 class="titulo">Ahorcado</h1>
</div>
<div style="text-align:center; margin: 30px 150px;">
<button class="btn" id="iniciar-juego">INICIAR JUEGO</button>
<input class="text-input" type="text" id="input-nueva-palabra" placeholder="Escriba una nueva palabra">
<button class="btn" id="nueva-palabra">AGREGAR PALABRA</button>
<button class="btn" id="reiniciar-juego" >EMPEZAR DE NUEVO</button>
</div>
<div style="text-align:left">
<canvas id="ahorcado" height="287px" width="1365px" ></canvas>
</div>
<footer class="footer">
<div style="text-align:center;">
<p> © Creado por Stefania Ardila Tique 2022|
<a href="https://www.linkedin.com/in/stefyardilat2807//"><img border="0" alt="GitHub" src="imagenes/linkedin.png" width="18" height="17"></a>
</p>
</div>
</footer>
<script type="text/javascript" src="canvas.js"></script>
<script type="text/javascript" src="ahorcado.js"></script>
</body>
</html>