Section 3: How to play audio files in HTML5
The sweetest and simplest way to play audio files is HTML5. You will agree with me after seeing the following code:
<audio src="audiotest.ogg" autoplay>
Your browser does not support the <code>audio</code> element.
</audio>
Was I right in guessing your reaction?
The only point you must know while playing audio files within browsers is that there is no ONE format of audio compatible with all browsers out there. So what is the option? You must encode your audio files to at least two formats, OGG and MP3. For a full list...