-
Notifications
You must be signed in to change notification settings - Fork 0
/
jogo.html
55 lines (44 loc) · 1.19 KB
/
jogo.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Estourando balões</title>
<script src="jogo.js"></script>
</head>
<body onload="iniciaJogo()">
<div style="float:left; width: auto; height: 500px;
background: #FFF; border: solid 1px #A2A2A2; margin-right: 5px;">
<table border="0">
<tr>
<td>
<img src="imagens/balao_azul_grande.png">
</td>
<td>
<span id="baloes_inteiros" style="font-size: 40px;"></span>
</td>
</tr>
</table>
<br>
<table border="0">
<tr>
<td>
<img src="imagens/balao_azul_grande_estourado.png">
</td>
<td>
<span id="baloes_estourados" style="font-size: 40px;"></span>
</td>
</tr>
</table>
<br>
<table border="0" style="width: 140px; height: 132px; text-align: center;">
<tr>
<td style="background: url('imagens/cronometro.png') ">
<span id="cronometro" style="color: red; font-size: 30px;"></span>
</td>
</tr>
</table>
</div>
<div id="cenario" style="float: left; width: 600px; height: 500px;
background: url('imagens/cenario.png'); background-position: bottom"></div>
</body>
</html>