+ 4
How will I put video from YouTube using HTML5?
After copying YouTube link How will I put the video in my website using html5
3 Answers
+ 10
yes it can also be done by using < iframe >
+ 9
here you need to use the video tag....
use either one of this....
<video controls>
<source src="your_video_name.mp4" type="video/mp4">
</video>
or
<video controls>
<source src="your_video_name.ogg" type="video/ogg">
</video>
hope this help....
+ 2
can it be done by using <iframe>??