How will I put video from YouTube using HTML5? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

26th May 2017, 8:05 AM
Subrata Halder
Subrata Halder - avatar
3 Answers
+ 10
yes it can also be done by using < iframe >
27th May 2017, 11:28 AM
Leon lit
Leon lit - avatar
+ 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....
26th May 2017, 8:10 AM
Leon lit
Leon lit - avatar
+ 2
can it be done by using <iframe>??
27th May 2017, 10:53 AM
Subrata Halder
Subrata Halder - avatar