0
How to embed a video in html by giving direct url from YOUTUBE
3 Antworten
+ 4
you can use <iframe> tag
like <iframe src="url" width=" " height=" " frameborder=" " allowfullscreen></iframe>. Or you can also use <video> tag like <video src="movie.mp4" controls></video>.
Thanks