-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 824 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 824 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Challenge 2 | Oracle Next Education</title>
<link rel="stylesheet" href="./style.css" />
<meta content="viewport" content="width=device-width" />
</head>
<body>
<header>
<h1><img src="imgs/logo.png"></h1>
</header>
<div class="hombre-ahorcado">
<img id="hombre" alt="hombre-ahorcado" />
</div>
<div class="adivinado">
</div>
<div class="errado"></div>
<form class="botones" action="javascript:void(0)">
<input type="button" class="btn-azul" value="Nuevo juego" onclick="nuevoJuego()"/>
<a href="principal.html"><input type="button" value="Desistir" /></a>
</form>
<script src="./app.js"></script>
</body>
</html>
<footer>
<p id="autor">♣ Desafío #2 - Desarrollado por Jennifer Arce - 2022 ♣</p>
</footer>