-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (39 loc) · 1.62 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
42
43
44
45
46
47
48
<!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>Irongame</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=Poppins:ital,wght@0,100;0,300;1,300&family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div id="game-board">
<canvas id="myCanvas" width="900" height="500">
<img id="lastwill" src="./img/last-will.jpeg" alt="">
</canvas>
<section>
<h1>iron<br>game</h1>
<button id="start-button">StartGame</button>
</section>
</div>
<div>
<p>Be a master of suffering and show your ability to survive. <br> Kill all the enemies who surround you.<br> Eat the big-eyed chicken to get extra life. </p>
<p>You only have 30 seconds. <br>DON'T YOU DIE</p>
</div>
<script src="./js/octoEnemy.js"></script>
<script src="./js/pythonEnemy.js"></script>
<script src="./js/bonus.js"></script>
<script src="./js/bullet.js"></script>
<script src="./js/player.js"></script>
<script src="./js/lifebar.js"></script>
<script src="./js/countdown.js"></script>
<script src="./js/irongame.js"></script>
<script src="./js/sounds.js"></script>
<script src="./js/background.js"></script>
<script src="./js/index.js"></script>
</body>
</html>