-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 914 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 914 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>JetPack Joyride</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="game-container">
<div id="visor">0000 m</div>
<button id="pauseBtn" title="Pausar"><img id="pauseBtnIcon" src="Images/PauseIcon.png" /></button>
<img id="MolduraPixelArt" src="Images/MolduraPixelArt.png" alt="">
<div class="game-frame">
<canvas id="canvas" width="540" height="540"></canvas>
</div>
<div class="instructions">
<b>Espaço</b> ou <b>Clique</b> para voar | <b>P</b> para pausar
</div>
</div>
<script src="script.js"></script>
</body>
</html>