-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.06 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Waveform</title>
<meta name="description" content="An experimental synth.">
<meta name="keywords" content="Audio, Droplet, Experiment, Music, OpenGL, Oscillator, Sound, Splash, Synth, Wave, Waveform, Web Audio, WebGL">
<meta property="og:title" content="Waveform">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mysterypancake.github.io/Waveform">
<meta property="og:site_name" content="Waveform">
<meta property="og:description" content="An experimental synth.">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="scripts/Bassball.js"></script>
<script src="scripts/Droplet.js"></script>
<script src="scripts/Spring.js"></script>
<script src="scripts/Shader.js"></script>
<script src="scripts/Audio.js"></script>
<script src="scripts/Main.js"></script>
</head>
<body onload="setup();">
<canvas id="canvas"></canvas>
</body>
</html>