-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (50 loc) · 2.64 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="ahorcado.css">
<script src="ahorcado.js" defer></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;400&display=swap" rel="stylesheet">
<title>AhorcadoGame</title>
</head>
<body>
<main>
<div id="logoAlura">
<a href="https://www.aluracursos.com/"><img src="./Vector_logo.png" alt="logo_alura"> </a>
</div>
<div id="mainDisplay" >
<button id="iniciarJuego" class="blueButton iniciarJuego" >Iniciar juego</button>
<button id="nuevaPalabra" class="greyButton nuevaPalabra">Agregar Nueva palabra</button>
<div id="saveCancelNewWord">
<input type="text" id="inputFrase" class="inputBox" maxlength="8">
<div id="adviceDiv"> <img src="./Vector_advice.png" alt="image_admiration"> Máx. de 8 Letras, No números, No caracterés especiales, No espacios</div>
<div id="saveCancelBtn">
<button id="guardarRemplazarbtn" > Guardar y Reemplazar </button>
<button id="cancelarBtn"> Cancelar </button>
</div>
</div>
<div id="nuevoJuegoDiv">
<div id="ahorcadoDiv"> <img id= "imagen" src="./ahorcadoDraw/Img0.png" height="350px" width="250px" alt=""> </div>
<input type="text" id="inputCellCharacters" placeholder="Introduce Palabra">
<span id="mensajeGanador"> Ganaste <br> Felicidades!! </span >
<span id="mensajeDerrota">Fin del juego!! </span >
<div id="palabrasCorrectas">
</div>
<div id="palabrasEquivocadas">
</div>
<div id="nuevoDesistirDiv">
<button id="nuevoJuegoBtn"> Nuevo Juego </button>
<button id="desistirBtn"> Desistir </button>
</div>
</div>
</div>
</main>
<footer>
<a href="https://github.com/Corb2346"> <img src="./github_log.png" alt="logo_github" height="50px" width="50px"></a>
Corb2346
<a href="https://www.theodinproject.com/"> <img src="./logo_top.png" alt="logo_top" height="50px" width="50px"></a>
</footer>
</body>
</html>