HTML+CSS Відео і музика

2075 / HTML+CSS / Відео і музика

 

<audio controls>
  <source src="Mario.ogg" type="audio/ogg">
  <source src="Mario.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>
 
 
 
<embed src="Mario.mp3" autostart="true" loop="true"
width="2" height="0">
</embed>
 
 
 
<video width="320" height="240" controls>
  <source src="film.mp4" type="video/mp4">
  <source src="film.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>