-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAq5.html
More file actions
32 lines (30 loc) · 1.12 KB
/
Aq5.html
File metadata and controls
32 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multimedia Gallery</title>
</head>
<body>
<h1>Multimedia Gallery</h1>
<figure>
<audio controls>
<source src="images/plane-flying-by-ambience-236034.mp3" type="audio/mpeg">
</audio>
<figcaption>Flying music</figcaption>
</figure>
<h2>Video Gallery</h2>
<figure>
<video width="320" height="240" controls poster="images/rose-165819_1280.jpg">
<source src="images/184972-874460313_small.mp4" type="video/mp4">
<track src="subtitles-en.vtt" kind="subtitles" srclang="en" label="English">
</video>
<figcaption> natural Views</figcaption>
</figure>
<p>If the media content is not supported, please download the audio or video from the links below:</p>
<ul>
<li><a href="images/plane-flying-by-ambience-236034.mp3" download>Download the audio</a></li>
<li><a href="images/184972-874460313_small.mp4" download>Download the video</a></li>
</ul>
</body>
</html>