+ 1

How to insert a video or audio in an html?

5th Jun 2020, 9:58 AM
Jairaj Singh Panwar
4 Answers
+ 2
Use <embed> tag for add video on html page. Example: <embed src="url" /> And when you open the html page, this video will start automatically. Use autostart="false" attribute for stop autoplay. <embed src="url" autostart="false"/>
5th Jun 2020, 10:03 AM
Muhammad Galhoum
Muhammad Galhoum - avatar
+ 2
you can also use the <iframe url="#" width="300px" height="200px"></iframe> tag.. for height and width you can change them to whatever dimensions you need, and change the "#" to the url for the video...
5th Jun 2020, 10:03 AM
Muhammad Galhoum
Muhammad Galhoum - avatar
0
With video and audio tag
5th Jun 2020, 11:55 AM
CodeFu
CodeFu - avatar