-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (30 loc) · 899 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Music Visualizer</title>
<style>
body{
background-color:black;
}
div.top{
background-color:rgb(255,0,0);
}
h1,h3{
color:white;
}
}
</style>
<script src="libraries/p5.js" type="text/javascript"></script>
<script src="libraries/p5.dom.js" type="text/javascript"></script>
<script src="libraries/p5.sound.js" type="text/javascript"></script>
<script src="sketch.js" type="text/javascript"></script>
<style> body {padding: 0; margin: 0;} canvas {vertical-align: top;} </style>
</head>
<body>
<div class="top">
<h1>Music Visualizer</h1>
<h3>Created by - Raj Pathare</h3>
</div>
</body>
</html>