-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (32 loc) · 968 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
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Jogo da Adivinhação</title>
</head>
<body>
<script src="js/mycode.js"></script>
<div class="container">
<h1 class="page-title">
Jogo da Adivinhação
</h1>
<br>
<p class="page-subtitle">
Digite um número de 0 a 10
</p>
<input type="number" id="valor" /><br>
<button type="submit" id="chutar" onclick="Chutar()">Chutar</button>
<button type="submit" onclick="Resetar()">Resetar</button>
<h4 class="resultado" id="resultado"></h4>
<hr align="center" width="80%">
<footer>
<h4>
Desenvolvido por Vitória de Valois, no projeto <i>Imersao Dev</i> da <a href="https://www.alura.com.br/">Alura</a> (15/09/21).
</footer>
</div>
</a>
</body>
</html>