Sunday, June 21, 2015

Audio element

1. The <audio> element is useful for embedding an audio player into a Web page. It is dedicated forstreamed audio

2. this article about 10 enhanced HTML5 audio players


  1. <html lang="en"
  2. <body>
  3.   <audio controls="controls">      <source src="https://dl.dropboxusercontent.com/u/1631516/horse.ogg"
  4.               type="audio/ogg" />      <source src="https://dl.dropboxusercontent.com/u/1631516/horse.mp3"
  5.               type="audio/mp3" />
  6.       Your browser does not support the audio element.
  7.       Download the audio/video in
  8.      <a href=”https://dl.dropboxusercontent.com/u/1631516/horse.ogg”>OGG</a>
  9.      or <a href=”https://dl.dropboxusercontent.com/u/1631516/horse.mp3”>MP3</a>
  10.      format.
  11.  </audio>
  12. </body>
  13. </html>

No comments:

Post a Comment