forked from AlvaroBenitoIron/BURGERSGAME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.4 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">
<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=Barlow:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<title>BURGERS GAME</title>
</head>
<body>
<div class="game-intro">
<img src="./images/Burger color.png" alt="" class="logo-img" />
<br />
<p>1. Use right and left arrow to move the plate!</p>
<p>2. Cook the burger following the order <br> of the ingredients</p>
<p>3. Avoid the piggish or they will eat your burger!</p>
<img src="#" alt="" class="arrows-img" />
<button id="start-button">Let's cook</button>
</div>
<div id="game-board">
<canvas id="canvas" width="500" height="600"></canvas>
</div>
<script src="./js/plate.js"></script>
<script src="./js/piggish.js"></script>
<script src="./js/ingredients.js"></script>
<script src="./js/burgers.js"></script>
<script src="./js/Life.js"></script>
<!-- <script src="./music/Smiley-island-short.mp3"></script> -->
<script src="./js/index.js"></script>
</body>
</html>