0
How to add video to html page ?
3 odpowiedzi
+ 1
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
by using <a> or <embed>
0
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"/>