-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (39 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
50 lines (39 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<h1>QuickSound Audio Editor</h1>
<div class="input-output-wrapper" id="input-method-div">
<div style="margin:auto 0">
<input type="file" id="audio-input-button" accept="audio/*">
</div>
<div>
<h1>or</h1>
</div>
<div style="margin:auto 0">
<button id="record-start">Record Audio</button>
</div>
</div>
<div class="input-output-wrapper">
<h2>Input</h2>
<div id="input-audio" class="audio-bar">
<h3>No Audio Input</h3>
</div>
</div>
<div class="wrapper"></div>
<button id="compile-button" onclick="compile()">Compile Audio</button>
<div class="input-output-wrapper">
<h2>Output</h2>
<div id="output" class="audio-bar">
<h3>No Audio Output</h3>
</div>
</div>
<script src="classes.js"></script>
<script src="index.js"></script>
<script src="events.js"></script>
</body>
</html>