-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (28 loc) · 887 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StepMusicJS</title>
<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>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="text-section">
<h1>Step Music JS</h1>
<p>by Jamie Coe</p>
<a target="_blank" href="https://github.com/jamiecoe/StepMusicJS">github</a>
</div>
<div class="click-me" onclick="hide(this)">
<h2>Click Me</h2>
</div>
<script type="text/javascript">
function hide(msg) {
msg.style.display = 'none';
}
</script>
</body>
</html>