-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.15 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,<meta name="viewport" content="user-scalable=no, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<link rel="manifest" href="manifest.webmanifest">
</head>
<body>
<div id="header">
<h1 class="home"><a href="https://www.96fps.net">96fps</a></h1>
<h2 class="home">Mouth Sounds</h2>
</div>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn" id="dropdown">Examples</button>
<div id="myDropdown" class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<audio id="audio" controls="true">
<source id="wav" src="examples/allstar/a.wav" type="audio/wav">
Your browser does not support HTML5 audio.
</audio>
<div id="transcript"></div>
<p>Experiment built using <a href="https://github.com/lowerquality/gentle">gentle</a> and other open source projects.</p>
<script src="loader.js"></script>
<script src="editor.js"></script>
</body>
</html>