-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Diogo Lima Carvalho - Inspirado MDN">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Jogo adivinhe o número</title>
</head>
<body>
<main>
<h1>Adivinhe o número!</h1>
<p>Selecione um número aleatório entre 1 e 100. Veja se consegue adivinhar em <strong>10</strong> chances ou
menos. Lhe
direi se seu palpite foi muito alto ou muito baixo.</p>
<div class="form">
<label for="campoPalpite">Digite seu palpite: </label><input type="number" id="campoPalpite"
class="campoPalpite">
<input type="submit" value="Enviar palpite" class="envioPalpite">
</div>
<div class="resultadoParas">
<p class="palpites"></p>
<p class="ultimoResultado"></p>
<p class="baixoOuAlto"></p>
</div>
<button class="novoJogo envioPalpite"> </button>
</main>
<script src="js/script.js" defer></script>
</body>
</html>