+ 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 Answer
+ 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