-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (21 loc) · 1.03 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
<!DOCTYPE html>
<html lang="pt-BR">
<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">
<title>Jogo da Adivinhação</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="witch-hat.ico" type="image/x-icon">
</head>
<body>
<h1>Adivinhe o número!</h1>
<h4>Estou pensando em um número de 1 a 100, você só tem 10 tentativas:</h4>
<input type="text" id="numeroChute">
<button onclick="verificaChute()" id="botaoChute">Adivinhar</button>
<footer>
<p>Jogo criado por <a href="https://github.com/emanoelcampos" target="_blank">emanoel campos</a> para o desafio do <a href="https://www.oracle.com/br/education/oracle-next-education/" target="_blank">Programa ONE - Oracle Next Education</a> em colaboração com a <a href="https://cursos.alura.com.br/user/emanoelcampos" target="_blank">Alura</a>.</p>
</footer>
<script src="script.js"></script>
</body>
</html>