-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
34 lines (25 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>10,000 Chimes</title>
<script src="libraries/react.min.js"></script>
<script src="libraries/react-dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<audio id="bell1"><source src="./bells/C130_8.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell2"><source src="./bells/D146_8.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell3"><source src="./bells/E164_8.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell4"><source src="./bells/F174_6.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell5"><source src="./bells/G196.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell6"><source src="./bells/A220.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell7"><source src="./bells/Asharp233_1.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell8"><source src="./bells/C261_6.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell9"><source src="./bells/F349_2.mp3" preload="auto" type="audio/mpeg"></audio>
<audio id="bell10"><source src="./bells/G392.mp3" preload="auto" type="audio/mpeg"></audio>
<div id="player"></div>
<script type="text/babel" src="app.jsx"></script>
</body>
</html>