-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgame.html
More file actions
54 lines (44 loc) · 1.36 KB
/
game.html
File metadata and controls
54 lines (44 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<title>Estourando balões</title>
<link rel="stylesheet" type="text/css" href="estilo.css">
<script src="game.js"></script>
</head>
<body onload="iniciarGame()">
<div id="table">
<table class="form-group">
<tr>
<td><img src="img/balao_azul_grande.png" /></td>
<td><span id="baloesVivos" class="fontNBaloes"></span></td>
</tr>
</table>
<br>
<table>
<tr>
<td><img src="img/balao_azul_grande_estourado.png" /></td>
<!--tavivo ou ta morto?? akskfsk (schrodinger)-->
<td><span id="baloesMortos" class="fontNBaloes"></span></td>
</tr>
</table>
<br>
<table style="width: 140px; height: 132px; ">
<tr>
<td class="cronometroIMG">
<span id="c" class="cro"></span>
</td>
</tr>
</table>
<table style=" height: 132px; ">
<tr>
<td>
<button type="button" class="btn btn-lg btn-danger" onclick="reiniciar()" >Reiniciar</button>
</td>
</tr>
</table>
</div>
<div id="cena" class="cenario"> </div>
</body>
</html>