HTML5 include <audio> element which is used for play audio file in web page Example: <audio src="file.ogg" controls="controls">Error Message.</audio> Attributes: autoplay : Audio will start automatically when page load. controls : Controls will be avialable such as play button and progress. loop : When audio finish it will start again. src : URL of the audio file |