0

How to add video to html page ?

14th Aug 2016, 6:59 PM
Diljeet Kakkar
Diljeet Kakkar - avatar
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...
19th Aug 2016, 2:44 AM
Jakob Bosworth
Jakob Bosworth - avatar
0
by using <a> or <embed>
15th Aug 2016, 4:15 AM
Mangesh Vitekar
Mangesh Vitekar - avatar
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"/>
15th Aug 2016, 4:31 AM
Bilash Proshad
Bilash Proshad - avatar