+ 1

Why my code doesn't work.

<!DOCTYPE html> <html> <head> <title>Video</title> </head> <body> <video controls> <source src = "https://youtu.be/t_Kd_G7p6ZQ" type = "video/mp4"/> <source src = "https://youtu.be/t_Kd_G7p6ZQ" type = "video/ogg"/> <source src = "https://youtu.be/t_Kd_G7p6ZQ" type = "video/mime"/> Video not supported in your browser! </video> </body> </html> <!--The video don't allow me to play it, even though I have used the correct supported format (mime) in Mozillar Firefox. I don't understand. Please explain-->

17th Feb 2019, 3:49 AM
Konybud
Konybud - avatar
2 Answers
+ 6
<!DOCTYPE html> <html> <head> <title>Video</title> </head> <body> <iframe width="420" height="345" src="https://www.youtube.com/embed/t_Kd_G7p6ZQ"> </iframe> Video not supported in your browser! </video> </body> </html>
17th Feb 2019, 4:53 AM
Louis
Louis - avatar
+ 2
Thx
17th Feb 2019, 7:54 AM
Konybud
Konybud - avatar