-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestPlaySelectedFile.html
More file actions
35 lines (33 loc) · 1.19 KB
/
testPlaySelectedFile.html
File metadata and controls
35 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Play Selected File</title>
</head>
<body>
<h4><a href="./index.html">Home</a></h4>
<p>
Hey folks, this is a page with test stuff on it and can be pretty much
ignored!
</p>
<h3>Play An Audio File</h3>
<input id="input" type="file" accept="audio/*" /><br />
<audio id="audio" controls></audio>
<p>Choose an appropriate piece of music for the occasion.</p>
<!-- <div class="hrh">
<h3>News Flash:</h3>
<h1 class="hrh headline">Her Majesty Queen Elizabeth II Has Died</h1>
<p>
This is a time of great sadness and today our household is sombre as we heared that our Queen died
today September 8 2022 at the age of 96 years.
<p>Our thoughts are with her family and the nations that mourn her passing.</p>
</p>
<h2>Long Live The King</h2>
<p>King Charles III</p>
</div> -->
<script src="./src/playSelectedFile.js"></script>
<script src="./src/testForMac.js"></script>
</body>
</html>