-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (23 loc) · 921 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<script src="cars.js"></script>
<script src="frogs.js"></script>
<!-- import the webpage's javascript file -->
<script src="/script.js" defer></script>
<!-- import the p5.js library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.js"></script>
<!-- import the p5.soundjs library -->
<script src= "https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/addons/p5.sound.js"></script>
<!--include p5.collide2D addon library-->
<script src="https://unpkg.com/p5.collide2d"></script>
</head>
<body>
</body>
</html>