+ 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-->
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>
+ 2
Thx