JSFiddle - React, Tailwind, and code Playground

by saty9

HTML

<html>
<body>
<video src="http://techslides.com/demos/sample-videos/small.mp4" id="vid"></video>
</body>
</html>

JavaScript

document.onload = function() {
  let vid = document.getElementById("vid")
  vid.play()
  vid.requestFullscreen()
}