-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 935 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./styles.css" />
<link rel="stylesheet" href="./reset.css">
</head>
<body>
<main class="main">
<h1 class="main_title">Adivina el número</h1>
<form class="main_form" action="">
<label class="main_form_label" for="userNumber">Introduce aquí tu número:</label>
<input class="main_form_userInput js-input" id="userNumber" type="number" name="number">
<button class="main_form_button js-button">Prueba</button>
<p class="main_form_clue js-clue">Pista: Escribe el número y dale a Prueba</p>
<p class="main_form_try js-try">Número de intentos: 0</p>
</form>
</main>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>