-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 821 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="estilo.css">
<title>Space Shooter</title>
</head>
<body>
<div id="main-play-area">
<img class="player-shooter" src="./img/hero.png" alt="hero">
<h4 class="game-instructions">
Não deixe os inimigos invadirem o seu planeta! <br>
<br>
<br>
**************Controles************** <br>
- Seta p/ cima <br>
- Seta p/ baixo <br>
- Barra de espaço p/ atirar <br>
</h4>
<div class="start-button">
<h1>START</h1>
</div>
</div>
<script type="text/javascript" src="shooter.js"></script>
</body>
</html>