-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaudio.html
More file actions
63 lines (60 loc) · 2.18 KB
/
audio.html
File metadata and controls
63 lines (60 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="./stylesheets/default.css"/>
<title>My audio</title>
<style>
h2 {
font-size:20px;
color: #B82500;
}
</style>
</head>
<body>
<h2>WE JAMMING</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://mp3rehab.com/user_uploads_072014-5/Bob%20Marley%20-%20Jammin.mp3">
Your Fallback goes here
</audio>
<h2>SMOOTH OPERATOR</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://mp3rehab.com/user_uploads_072014-5/Sade%20-%20Smooth%20Operator.mp3">
Your Fallback goes here
</audio>
<h2>HOTEL CALIFORNIA</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://freemp3.se/music/user_folder/Hotel%20California%20-%201407324785.mp3">
Your Fallback goes here
</audio>
<h2>DAMN YOUR EYES</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://8tracks.s3.amazonaws.com/tf/029/870/200/62479.mp3">
Your Fallback goes here
</audio>
<h2>MAD ABOUT YOU</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://finoatoccartilanima.myblog.it/media/02/01/19fd1ba93d50037c50f6d2f9849819af.mp3">
Your Fallback goes here
</audio>
<h2>SEVEN NATIONS ARMY</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://freemp3.se/music/user_folder/the-white-stripes-seven-nation-army-1406871541.mp3">
Your Fallback goes here
</audio>
<h2>GATO BARBIERI. EUROPA</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://www.csun.edu/~ca168548/europa.mp3">
Your Fallback goes here
</audio>
<h2>JE VEUX</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://freemp3.se/music/user_folder/Zaz%20-%20Je%20Veux%20-%201407513068.mp3">
Your Fallback goes here
</audio>
<h2>911</h2>
<audio id="audio" preload="auto" tabindex="0" controls="" >
<source src="http://www.mp3fil.com/get/397c6578747c323434353036/%D0%9E%D0%BA%D0%B5%D0%B0%D0%BD_%D0%95%D0%BB%D1%8C%D0%B7%D0%B8._%D0%AF_%D1%82%D0%B0%D0%BA_%D1%85%D0%BE%D1%87%D1%83....mp3">
Your Fallback goes here
</audio>
</body>
</html>