mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 13:09:59 +01:00
finished mulitmedia plaayer
This commit is contained in:
parent
d042ffe0e7
commit
b9f9b84231
1 changed files with 18 additions and 3 deletions
|
|
@ -5,9 +5,24 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Multimedia Player</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>MEDIA PLAYERS</h1>
|
||||
<section>
|
||||
<h2>Sailing Away</h2>
|
||||
<audio aria-label="audio" controls>
|
||||
<source type="audio/mpeg" src="https://cdn.freecodecamp.org/curriculum/js-music-player/sailing-away.mp3">
|
||||
</audio>
|
||||
</section>
|
||||
<section>
|
||||
<h2>What is the map method</h2>
|
||||
<video aria-label="video" width="320" height="240" controls>
|
||||
<source src="https://cdn.freecodecamp.org/curriculum/labs/What is the map method and how does it work.mp4" type="Video/mp4">
|
||||
<track src="subtitles.vtt" kind="subtitles" srclang="en" label="English">
|
||||
</video>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Transcript</h2>
|
||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis deleniti quaerat velit unde corrupti dolor voluptatem minus esse rerum consequuntur porro expedita odit, hic dolore! Praesentium corrupti natus minus libero.</p>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue