miércoles, 1 de agosto de 2018

Código para hacer una Página con AUDIO E INSERTAR UN VIDEO HTML

CÓDIGO PARA HACER UNA PÁGINA CON AUDIO
<html>
<head>
<title>Pagina de Musica !!</title>
</head>
<body>
<embed src="rola.mp3" autostart=false true loop=true width="283" height="196">
</body>
</html>

 CÓDIGO PARA INSERTAR UN VIDEO<html>
    <head>
        <title>Reproductor de video</title>
    </head>
    <body>
        <h1>Mi reproductor de videos</h1>
        <video width="320" height="240" autoplay controls>
        <source src="Together Forever.mp4" type="video/mp4" type="video/mp4">
        <source src="Together Forever.webm" type="video/mp4" type="video/webm">
        su navegador no soporta la etiqueta video
        </video>
    </video>
</html>

No hay comentarios.:

Publicar un comentario