How to create programming of HTML of audio and video? Source Code for Audio and Video
How to create programming of HTML of audio and video? Source Code for Audio and Video How to create programming of HTML of audio and video? Here , We are sharing Source Code for Audio and Video So, that you can attach this code in your project without searching on interntet How to Write Source code for Audio in HTML <audio controls> <source src="thinkforu.ogg" type="audio/ogg"> <source src="thinkforu.mp3" type="audio/mpeg"> Your browser support the audio element. </audio> >> The controls attribute adds audio controls, like play, pause, and volume. >> The <source> element allows you to specify alternative audio files which the browser may choose from. The browser will use the first recognized format. >> The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element. How to write source code for Video in HTML ...