-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultimedia-player.html
More file actions
36 lines (31 loc) · 1019 Bytes
/
multimedia-player.html
File metadata and controls
36 lines (31 loc) · 1019 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multimedia Player</title>
</head>
<body>
<h1>Be My Lady</h1>
<section>
<h2>The Gambler</h2>
<audio controls aria-label="Audio player for The Gambler">
<source src="https://cdn.freecodecamp.org/curriculum/js-music-player/sailing-away.mp3" type="audio/mpeg">
</audio>
</section>
<section>
<h2>Video</h2>
<video controls width="300" aria-label="Video player">
<source src="https://cdn.freecodecamp.org/curriculum/labs/what-is-the-map-method-and-how-does-it-work.mp4" type="video/mp4">
<track src="https://cdn.freecodecamp.org/curriculum/labs/what-is-the-map-method-and-how-does-it-work.vtt"
kind="subtitles"
srclang="en"
label="English">
</video>
</section>
<section>
<h2>Transcript</h2>
<p>What is the map method and how does it work?</p>
</section>
</body>
</html>