forked from mauriziobrt/DT2140-Sound-Interaction-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·54 lines (51 loc) · 1.81 KB
/
index.html
File metadata and controls
executable file
·54 lines (51 loc) · 1.81 KB
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 name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Cache-Control"
content="no-cache, max-age=0, must-revalidate"
/>
<title>p5.js faust example</title>
<link rel="stylesheet" href="styles.css" />
<script src="https://cdn.jsdelivr.net/npm/p5@1.9.0/lib/p5.js"></script>
<script src="dsp.js"></script>
</head>
<body class="grid-container fullbody">
<nav class="primary-nav">
<li><a href="index.html">Interaction 1</a></li>
<li><a href="sound2.html">Interaction 2</a></li>
<li><a href="sound3.html">Interaction 3</a></li>
</nav>
<div id="info">
<p>
<b>Insert a description of your sonic interaction design here! </b>
<br />
<br />
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut adipisci,
non quasi vel vero odit debitis recusandae impedit laborum id tempora!
Enim accusantium a voluptatum nisi ea placeat? Accusamus, perferendis?
Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequuntur
accusantium suscipit eaque similique odit deserunt iure est unde libero
pariatur doloribus voluptatibus voluptatum cupiditate error, dolorem
eius eos. Provident, ullam.
</p>
</div>
<footer>
<p>
Developed by Maurizio Berta and Laura McHugh
<br />
for
<a href="https://github.com/mauriziobrt/DT2140-Sound-Interaction-Lab"
>DT2140 Multimodal Interfaces Sound Interaction Lab</a
>
<br />
KTH Royal Institute of Technology, 2025
</p>
</footer>
</body>
<script src="helpers.js"></script>
<script src="interaction-1.js"></script>
<script src="sketch.js"></script>
</html>