-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
48 lines (48 loc) · 1.84 KB
/
game.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
<!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="css/reset.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/game.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
<title>Ahorcado - Juego</title>
</head>
<body>
<header>
<div>
<h1>Challenge 2 - Juego del ahorcado</h1>
</div>
</header>
<main>
<div>
<a href="https://www.aluracursos.com/" target="_blank"><img id="logoAluraGame" src="images/logoAlura.png" alt="logoAlura"></a>
</div>
<div id="winner" class="hidden">Felicidades has ganado!</div>
<div id="loser" class="hidden">Has perdido! intenta otra vez</div>
<div id="divCanvas">
<canvas width="300" height="360"></canvas>
</div>
<div id="divDiscovered">
<div id="letters"></div>
<div id="dashes"></div>
</div>
<div id="divErrors">
<div id="lettersError"></div>
</div>
<div id="divButtonsGame">
<button id="newGame">Nuevo juego</button>
<a href="index.html"><button id="surrender">Salir</button></a>
</div>
</main>
<footer>
<p id="datos">Creador: <a id="gitHub" href="https://github.com/J-ATJ" target="_blank">J-ATJ</a></p>
</footer>
<script src="js/words.js"></script>
<script src="js/game.js"></script>
</body>
</html>