-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.32 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The IronRat journey</title>
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body>
<div class="hide" id="box">
<h1>🐭Welcome to the IronRat journey!🐭</h1>
<p>
My dream 😍 is to become a <strong>junior fullstack developer</strong>,
could you help me achieve it?
</p>
<p>
Use the <strong>arrow keys</strong> to move ⬆️ up, ⬇️ down, ⬅️left and
➡️ right so I can aquire <strong>all</strong> the coding languages and
frameworks that will appear on the screen 😎
</p>
<p>To shoot 🔫 my enemies, press the <strong>space</strong> key</p>
<p>Let´s <strong> have</strong> fun! 🤩</p>
<button id="button">Start</button>
</div>
<img class="hide" src="./img/player background.png" alt="ironRat" />
<canvas id="canvas"></canvas>
<script src="./js/goals.js"></script>
<script src="./js/bullets.js"></script>
<script src="./js/enemies.js"></script>
<script src="./js/player.js"></script>
<script src="./js/background.js"></script>
<script src="./js/game.js"></script>
<script src="./js/index.js"></script>
</body>
</html>