forked from cs4241-20a/a4-creative-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 1001 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
<html>
<head>
<script src="NexusUI.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Sansita+Swashed:wght@500&display=swap" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="style.css">
<script src = "scripts.js"></script>
</head>
<body>
<div class="help-tip">
<p id = "help"> Play this piano like you would any electric piano!</p>
</div>
<h1> Wanna be the Piano Man?</h1>
<div id = "radiobuttonvalues">
<input type = "radio"checked name= "waveform" id = "sine" value = "sine"> sine
<input type = "radio" name= "waveform" value = "square" id = "square"> square
<input type = "radio" name= "waveform" id = "triangle" value = "triangle" > triangle
<input type = "radio" name= "waveform" id = "sawtooth" value = "sawtooth"> sawtooth
</div>
<br>
<br>
<div id = "target">
</div>
<h2>"… Sing us a song, you're the piano man <br>
Sing us a song tonight"</h2>
</body>
</html>