-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/ab8ffcf404.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<title>Treinando JS</title>
</head>
<body>
<div class="icon-wrapper">
<i class="fa-solid fa-moon"></i>
<i class="fa-sharp fa-solid fa-sun hide"></i>
</div>
<main>
<div class="screen1">
<h1>Jogo da adivinhação</h1>
<p>Adivinhe o número entre 0 e 10</p>
<form>
<input type="number" name="" id="inputNumber" minlength="1">
<button class="btnTry">Tentar</button>
</form>
</div>
<div class="screen2 hide">
<h2>Acertou em 3 tentativas!</h2>
<button class="btnReset">Jogar novamente</button>
</div>
</main>
<script src="js/script.js"></script>
</body>
</html>