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
2. this article about 10 enhanced HTML5 audio players
- <html lang="en"
- <body>
- <audio controls="controls"> <source src="https://dl.dropboxusercontent.com/u/1631516/horse.ogg"
- type="audio/ogg" /> <source src="https://dl.dropboxusercontent.com/u/1631516/horse.mp3"
- type="audio/mp3" />
- Your browser does not support the audio element.
- Download the audio/video in
- <a href=”https://dl.dropboxusercontent.com/u/1631516/horse.ogg”>OGG</a>
- or <a href=”https://dl.dropboxusercontent.com/u/1631516/horse.mp3”>MP3</a>
- format.
- </audio>
- </body>
- </html>
No comments:
Post a Comment