💻 Código HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="author" content="Jostyn VY">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Multimedia</title>
</head>
<body>
     <h1>Ejercicio Multimedia</h1>
       <div><a href=video/small.3gp download>video 3gp</a></div>
        <figure>
            <figcaption>Vídeo 1</figcaption>
            <video poster="img/ic_sinfondo.png" width="560" controls loop>
                <!-- Video from http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/ -->
                <source src="videos/small.3gp" type="video/3gp">

                <p>Su navegador no soporta la etiqueta &lt;video&gt;. Puede acceder al contenido en el siguiente <a href="http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/">enlace</a></p>
            </video>
        </figure>
        <hr>
        <figure>
            <figcaption>Vídeo 2</figcaption>
            <video poster="img/ic_sinfondo.png" width="560" controls>
                <source src="videos/small.mp4" type="video/mp4">
                <source src="videos/small.webm" type="video/webm">
                <source src="videos/small.ogv" type="video/ogg">
                <source src="videos/small.3gp" type="video/3gp">
                <p>Su navegador no soporta la etiqueta &lt;video&gt;. Puede acceder al contenido en el siguiente <a href="http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/">enlace</a></p>
            </video>
        </figure>
        <hr>
        <figure>
            <figcaption>Audio</figcaption>
            <audio loop  autoplay controls>
                 <!-- Music from https://file-examples.com/index.php/sample-audio-files/ -->
                 <source src="audio/file_example.mp3" type="audio/mpeg">
                <p>Su navegador no soporta la etiqueta &lt;audio&gt;. Puede acceder al contenido en el siguiente <a href="https://file-examples.com/index.php/sample-audio-files/sample-mp3-download/">enlace</a></p>
            </audio>
        </figure>
</body>
</html>

📸 Resultado del ejercicio

Resultado ⬅ Volver