-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
19 lines (19 loc) · 961 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<title>Hill Climbing Guessing Game</title>
<link rel="stylesheet" href="/CSS/style.css">
</head>
<body>
<h1>Jogo de Advinhação!</h1>
<p>Estou pensando em um número entre 1 e 100. Você tem 10 tentativas. Boa sorte!</p>
<div id="palpites"></div>
<input type="number" id="palpite" min="1" max="100" placeholder="Digite seu palpite...">
<button id="submeter">Enviar</button>
<footer>
<p class="p2">O algoritmo Hill Climbing é uma técnica de otimização usada para encontrar o máximo ou mínimo local de uma função. <br>No contexto deste jogo, o algoritmo é utilizado para ajudar o jogador a adivinhar o número mais rapidamente, dando <br> dicas sobre se a tentativa atual está muito alta ou muito baixa em relação ao número correto.</p>
</footer>
<script type="text/javascript" src="/JavaScript/script.js"></script>
</body>
</html>