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