VIDEO
Run
<html>
	<head>
		<title>The video Tag</title>
	</head>
	<body>
		<h1>Video Tag Example</h1>
		<video controls width="250">
			<source src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/resources/file_example_MP4.webm"
            type="video/webm">
				<source src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/resources/file_example_MP4.mp4"
            type="video/mp4">
		</video>
	</body>
</html>