-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallows.html
More file actions
41 lines (37 loc) · 1.06 KB
/
gallows.html
File metadata and controls
41 lines (37 loc) · 1.06 KB
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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/sprite.css">
<link rel="stylesheet" href="css/lacuna.css">
<title>Jogo da Forca</title>
</head>
<body>
<div class="jumbotron">
<h2 class="text-center">Jogo da forca</h2>
</div>
<div class="container">
<!-- div com a classe sprite -->
<div class="sprite"></div>
<ul class="lacunas text-center"></ul>
<div class="text-center">
<input id="entrada"
class="entrada"
placeholder="Palavra secreta" autofocus>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/sprite.js"></script>
<script src="js/jogo.js"></script>
<script src="js/controller.js"></script>
<script>
criaController(
criaJogo(
createSprite('.sprite')
)
).inicia();
</script>
</body>
</html>