-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (27 loc) · 1019 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/main.css">
<title>Eval module 2 CrisBIB</title>
</head>
<body>
<header class="header">
<h1 class="title">Adivina el número</h1>
</header>
<main class="main">
<form class="form">
<label for="number" class="js-label">Introduce aquí tu número:</label>
<input id="number" type="text" class="js-input" placeholder="¡Prueba suerte!">
<button class=" js-button ">Prueba</button>
<input type="reset" value="Inténtalo de nuevo" class="js-buttonR">
</form>
<div>
<p class="js-clues ">Pista: escribe el número y PRUEBA</p>
<p class="js-message">Número de intentos: <span class="js-counter">0</span></p>
</div>
</main>
<script src="./js/main.js "></script>
</body>
</html>