html5 audio tag
The HTML <audio> element is used to play an audio file on a web page.
for example:
<audio controls>
<source src="audio1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
The controls attribute adds audio controls, like play, pause, and volume.
The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.
Supported formats: .mp3, .ogg, .wav
Test your knowledge with interactive quizzes.
Prepare for interviews with curated question sets.
Ask your coding-related doubts and get answers.
Earn certifications to enhance your resume.
Hands-on projects to improve your skills.
Test your knowledge with interactive quizzes.
Prepare for interviews with curated question sets.
Add your technical blogs and read technical topics.
Earn certifications to enhance your resume.
Hands-on projects to improve your skills.