+ 3

Any body know how to solve this is i tried to add a video but it not working

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Video</title> </head> <body> <h1><b>Mp4</b></h1> <video> <source src="http://techslides.com/demos/sample-videos/small.mp4"> </video> </body> </html>

25th Sep 2020, 7:25 AM
d̷r̷e̷a̷m̷ ̷ h̷a̷c̷k̷e̷r̷
d̷r̷e̷a̷m̷ ̷ h̷a̷c̷k̷e̷r̷ - avatar
1 ответ
+ 5
Try this: 👇 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Video</title> </head> <body> <h1><b>Mp4</b></h1> <video src="http://techslides.com/demos/sample-videos/small.mp4" controls auytoplay> </video> </body> </html>
25th Sep 2020, 7:47 AM
Sadman Sakib
Sadman Sakib - avatar