-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
29 lines (25 loc) · 815 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
<!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>Termo da Comunidade CoDe</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="titulo">Termo da CoDe</h1>
<div class="area-resposta">
<p id="resposta"></p>
<button id="recomecar">Recomeçar o jogo</button>
</div>
<ul class="chutes-registrados">
</ul>
<p id="chance">Chance: <span id="tentativaAtual">1</span>/6</p>
<form id="tentativa">
<input type="text" maxlength="5" id="chute" placeholder="Digite uma palavra!">
<input type="submit">
</form>
<script src="js/main.js"></script>
</body>
</html>