-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 1.53 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
<!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">
<link rel="stylesheet" href="css/styles.css">
<title>Juego</title>
</head>
<body>
<!-- TÍTULO -->
<section class="primero">
<header>
<h1> Adivina el número</h1>
<p class="tries">0</p>
</header>
<main>
<!-- INTRODUCIR EL NÜMERO -->
<!-- Antes lo tenía con FORM pero se reseteaba ("enviaba información") cuando le dabas al ENTER -->
<div class="number" >
<label for="box_number" class="introduce">Introduce un número</label>
<input type="text" id="box_number" name="number" class="box_number" placeholder="Escribe un número">
<button type="button" class="boton_try" name="button">Prueba</button>
</div>
<!-- OCULTO/INTRODUCIR NOMBRE -->
<div class="name">
<label for="box_name" class="introduce"></label>
<input type="text" id="box_name" name="name" placeholder="Escribe tu nombre">
<button type="button" class="boton_save" name="button">Guarda</button>
</div>
<!-- PISTAS/INSTRUCCIONES -->
<div class="pistas"> <p class="pista">Escribe un número del 0 al 100 y prueba</p>
</div>
</main>
</section>
<!-- HISTÓRICO -->
<section class="historico">
<div class="history">
<h1 class="hh">Histórico</h1>
</div>
<div class="orden">
<ul class="lista">
<!-- Lista de jugadores que se irá incluyendo con js -->
</ul>
</div>
</section>
<script type="text/javascript" src="js/main.js"> </script>
</body>
</html>