+ 1
How to insert a video or audio in an html?
4 Answers
+ 5
https://www.sololearn.com/discuss/75044/?ref=app
https://www.sololearn.com/discuss/1836116/?ref=app
https://www.sololearn.com/discuss/92449/?ref=app
https://www.sololearn.com/discuss/38457/?ref=app
https://www.sololearn.com/discuss/17366/?ref=app
https://www.sololearn.com/discuss/605245/?ref=app
You should check the question is asked before or not.
+ 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"/>
+ 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...
0
With video and audio tag