-
Notifications
You must be signed in to change notification settings - Fork 0
/
BoidsExtension.html
36 lines (26 loc) · 1.05 KB
/
BoidsExtension.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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> BOIDS </title>
<!-- CDNs -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/SimulationLabs/Stylesheets/Default.css" rel="stylesheet">
</head>
<body>
{% include HeaderBar.html %}
<!-- Page content -->
<p> Extension page! </p>
<h2> Styling </h2>
<p> Probably how to style and host your own p5 sketches in websites </p>
<h2> Ideas for this ext </h2>
<ul>
<li> Extra parts like using describe() </li>
<li> Extra events like doubleClicked() </li>
</ul>
</body>
</html>