The HTML <audio> component is utilized to install sound substance in reports. It may hold a few audio sources, spoke to utilizing the src characteristic or the <source> component; the program will pick the most suitable one.
Before HTML5, there was no standard for playing audio records on a site page.
Before HTML5, audio records must be played with a module (like flash). Then again, diverse programs backed distinctive modules.
HTML5 characterizes another component which details a standard approach to implant an audio record on a page: the audio component.
Here is the Syntax for AUDIO Element
Supported Browser
<audio controls> <source src="Place your audio file here with full path" type="audio/mpeg"/> <source src="Place your audio file here with full path" type="audio/ogg"/> </audio>
The control property includes <audio> controls, in the same way as play, stop, and volume.
You ought to likewise embed content substance inside the <audio> labels for programs that don't help the <audio> component.
The <audio> component permits numerous <source> components. <source> components can connection to diverse audio documents. The program will utilize the initially perceived arrangement.
Below is complete syntax along with example
<!DOCTYPE html> <html> <head> <title>Title Name will go here</title> </head> <body> <audio controls> <source src="media/simple_audio.mp3" type="audio/mpeg"/> <source src="media/simple_audio.ogg" type="audio/ogg"/> <!-- This line will be called when you are running an old browser --> <p>Your file doesn't support the audio element</p> </audio> </body> </html>