-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <script src="main.js"></script> -->
<link rel="stylesheet" href="styles.css" />
<title>Project 1 Game</title>
</head>
<body>
<header>
<img src="images/Gaming-with-life.png" />
<!-- <h1>Gaming With Life</h1> -->
</header>
<div id="game-board">
<canvas id="canvas" width="1200" height="650"></canvas>
</div>
<audio src="/sound effects/Pigeondust - Chienowa.mp3" id="game-sound"></audio>
<audio src="/sound effects/gameover.wav" id="game-over"></audio>
<audio src="/sound effects/win sound.mp3" id="win"></audio>
<audio src="/sound effects/money sound.mp3" id="money-sound"></audio>
<audio src="/sound effects/health sound.mp3" id="health-sound"></audio>
<audio src="/sound effects/entertainment sound.mp3" id="entertainment-sound"></audio>
<audio src="/sound effects/love sound.mp3" id="love-sound"></audio>
<audio src="/sound effects/enterkey.mp3" id="enterKey-sound"></audio>
<audio src="/sound effects/enterkey2.mp3" id="enterKey2-sound"></audio>
<audio src="/sound effects/typing.mp3" id="typing-sound"></audio>
<script src="secondLayout.js"></script>
<script src="startPage.js"></script>
<script src="classes.js"></script>
<script src="circle.js"></script>
<script src="draw-bg.js"></script>
<script src="add-sound.js"></script>
<script src="clickhandler.js"></script>
<!-- <script src="animation.js"></script> -->
</body>
</html>