-
Notifications
You must be signed in to change notification settings - Fork 1
/
popballoonsgame2.html
55 lines (43 loc) · 1.38 KB
/
popballoonsgame2.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>
<head>
<meta charset="utf-8">
<title>Game Start</title>
<script src="popballoonsgame.js"></script>
</head>
<body onload="inciaJogo()">
<div
style="float: left; width: auto; height: 500px; background: white; border: solid 1px #a2a2a2; margin-right: 5px;">
<table>
<tr>
<td>
<img src="imagens/balao_azul_grande.png" />
</td>
<td>
<span id="baloes_inteiros" style="font-size: 40px;"></span>
</td>
</tr>
</table>
<table>
<tr>
<td>
<img src="imagens/balao_azul_grande_estourado.png" />
</td>
<td>
<span id="baloes_estourados" style="font-size: 49px;"></span>
</td>
</tr>
</table>
<table style="width: 140px; height: 132px;">
<tr>
<td style="background: url('imagens/cronometro.png'); text-align: center;">
<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>