D. El elemento video

Atributos adicionales

poster

Proporciona la URL de una imagen que se muestra mientras no se haya cargado ningún byte del video.

Ejemplo

Salida

Ábrelo en otra pestaña.

Revísalo en gilpgedit.

<!DOCTYPE html>
<html lang="es">
<head>
 <meta charset="UTF-8">
 <meta name="viewport"
   content="width=device-width">
 <title>Video</title>
 <style>
  video {
   max-width100%
  }
 </style>
</head>
<body>
 <h1>Video</h1>
 <figure>
  <video autoplay loop
    src="https://media.giphy.com/media/1W62t8wP8m1iM/giphy.mp4">
   Tu navegador no soporta video.
  </video>
 </figure>
 <footer>
  <p>
   Video de
   <a href="https://giphy.com"
     target="_blank">
    Giphy</a>.
  </p>
 </footer>
</body>
</html>

Solo para los más rudos