Before HTML5, audio files required a browser plug-in like Adobe Flash.
The <audio> element is used to embed sound content in HTML documents. It may contain one or more audio sources, represented using the src attribute or the [source](<source>) element.
The following code snippet adds an audio file with the filename `tutorial.ogg` or `tutorial.mp3`. The <source> element indicates alternative audio files which the browser may choose. The browser will utilize the first recognized format.
The `<source>` element enables you to indicate alternative audio files which the browser may choose from. The browser will utilize the first recognized format.