Answers for "audio video syntax in html5"

0

input audio and video in html

<!DOCTYPE HTML>

<html>
   <body>
      
      <audio controls autoplay>
         <source src = "/html5/audio.ogg" type = "audio/ogg" />
         <source src = "/html5/audio.wav" type = "audio/wav" />
         Your browser does not support the <audio> element.
      </audio>
      
   </body>
</html>
Posted by: Guest on September-14-2021
0

html5 audio

<audio src="/test/audio.ogg">
<p>Tu navegador no implementa el elemento audio.</p>
</audio>
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language