-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 1.69 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
<!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" />
<title>Super Mario Game</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="./style.css" />
<!-- import the webpage's javascript file -->
<script src="./resources/js/script.js" defer></script>
<script src="./resources/js/bodyGame.js"></script>
<script src="./resources/js/gameover.js"></script>
<script src="./resources/js/soundGame.js"></script>
<script src="./resources/js/instruction.js"></script>
<script src="./resources/js/intro.js"></script>
<!-- import Google font -->
<link href="https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=VT323&display=swap" rel="stylesheet">
<!-- import p5 things -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/addons/p5.sound.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@cmu-eberly-center/[email protected]/lib/p5.play.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/scenemanager.min.js"></script>
<script src="https://cdn.JsDelivr.net/gh/bmoren/p5.collide2D/p5.collide2d.min.js"></script>
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js"></script>
<script src="./resources/js/p5.clickable.js"></script>
<script src="./resources/js/p5.speech.js"></script>
</head>
<body></body>
</html>