HTML5 Tag: AUDIO

Defination

To play an audio file in your webpage.

Example
<audio controls>
    <source src="bollywood-song.ogg" type="audio/ogg">
    <source src="bollywood-song.mp3" type="audio/mpeg">
    Sorry, your browser does not support the audio element.
</audio>

Copyright @ 2024 DevelopNew. All Rights Reserved