With HTML Audio we can add audio in our website. Audio is added in HTML like example given below:
Example
<!Doctype Html>
<Html>
<Head>
<Title>
HTML Audio
</Title>
</Head>
<Body>
<audio controls>
<source src="file.mp3" type="audio/mp3">
</audio>
</iframe>
</Body>
</Html>
Copyright ©2022 coderraj.com. All Rights Reserved.