-
Notifications
You must be signed in to change notification settings - Fork 8
/
audio.html
66 lines (64 loc) · 2.44 KB
/
audio.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>INT222 - Assignment #2 - audio.html</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/mycss.css" />
</head>
<body>
<nav>
<ul>
<li><a href="../">Zenit Account</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Photo Gallery</a></li>
<li><a href="video.html">Video</a></li>
<li><a class="current" href="audio.html">Audio</a></li>
<li><a href="html5.html">HTML5</a></li>
<li><a href="forms.html">Forms</a></li>
<li><a href="other.html">Other</a></li>
<li><a href="css">CSS Used</a></li>
</ul>
</nav>
<h1>Audio</h1>
<div class="content">
<section>
<h2>Frédéric Chopin Op. 25 No. 12: Étude in C minor</h2>
<article class="table">
<p class="cell">
Frédéric Chopin was a pianist and composer from Warsaw, Poland. He was well known as a child prodigy composing romantic works. By the age of 20 he had moved to Paris, France to continue his career, but died at a young age of 39 in 1849 due to his health.
</p>
<p class="cell">
Here is one of Chopin's solo pieces, the Études. The Études are well known for being revolutionary and challenging. It is being performed by Donald Betts.<br />
<audio controls="controls" preload="auto">
<source src="misc/Chopin.ogg" type="audio/ogg" />
<source src="misc/Chopin.mp3" type="audio/mpeg" />
Your browser does not support the audio tag.
</audio>
</p>
</article>
</section>
<aside>
<h2>Audio Control Options</h2>
<ul>
<li><input type="button" value="Play" /></li>
<li><input type="button" value="Pause" /></li>
<li><input type="button" value="Volume On" /></li>
<li><input type="button" value="Volume Off" /></li>
<li><input type="button" value="Increase Volume" /></li>
<li><input type="button" value="Decrease Volume" /></li>
</ul>
</aside>
</div>
<footer>
<section>
<script type="text/javascript">
//<![CDATA[
var dt=new Date(document.lastModified); // Get document last modified date
document.write('<p>This page was last updated on '+dt.toLocaleString()) + '</p>';
//]]>
</script>
</section>
</footer>
</body>
</html>