-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (26 loc) · 1.41 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>
<head>
<title>Challenge 2 - Juego ahorcado</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="logo">
<img src="img/logo.png">
</div>
<div class="botones-inicio">
<!-- <button class="inicio"><a href="./juego.html" class="inicio">Iniciar juego</a></button> <br> -->
<!-- <a href="./juego.html" class="inicio">Iniciar juego</a><br>
<a href="./palabra.html" class="agregar">Agregar nueva palabra</a> -->
<!-- <button class="agregar"><a href="./palabra.html" class="agregar">Agregar nueva palabra</a></button> -->
<!-- <input type="button" class="btn-inicio" value="Iniciar juego" onclick="location.href='index.html'"> <br> -->
<!-- <input type="button" class="btn-agregar" value="Agregar nueva palabra" onclick="location.href='palabra.html'"> -->
<input type="button" onclick="location.href='./juego.html'";" class="agregar" value="Iniciar Juego" /> <br>
<input type="button" onclick="location.href='./palabra.html'";" class="inicio" value="Agregar nueva palabra" />
</div>
</div>
<!-- <script src="añadir.js"></script> -->
<script src="js/inicio.js"></script>
</body>
</html>