-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (51 loc) · 2.33 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
49
50
51
52
53
54
<!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" />
<meta property="og:title" content="Save the turtle" />
<meta property="og:url" content="https://saramansori.github.io/Save-The-Turtle/" />
<meta property="og:image" content="./img/preview-image.JPG" />
<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=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<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=Pacifico&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<title>Save the Turtle!</title>
<link rel="icon" href="./img/player/turtle.png" />
</head>
<body>
<section class="game">
<div id="preload-font" class="fontload">.</div>
<div id="preload-pacifico-font" class="fontload">.</div>
<canvas id="myCanvas" style="border: 12px solid #ffffff"></canvas>
<img src="./img/instructions.png" alt="instructions list" />
</section>
<script src="./js/healthIndicators.js"></script>
<script src="./js/powerup.js"></script>
<script src="./js//banner.js"></script>
<script src="./js//points.js"></script>
<script src="./js//explosion.js"></script>
<script src="./js//life.js"></script>
<script src="./js//levels.js"></script>
<script src="./js//enemies.js"></script>
<script src="./js//acid.js"></script>
<script src="./js//obstacles.js"></script>
<script src="./js//bubbles.js"></script>
<script src="./js//background.js"></script>
<script src="./js//player.js"></script>
<script src="./js//sounds.js"></script>
<script src="./js//gameover.js"></script>
<script src="./js//game.js"></script>
<script src="./js//index.js"></script>
</body>
</html>