How can I get this code to work on my New Google Site, https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_fullscreen_video. When I embed this code, the video doesn't display. Thanks.
Below code is enabling to display video on site. The css code with id "myVideo" enables to display the video in background. <video autoplay muted loop id="myVideo"> <source src="rain.mp4" type="video/mp4"> Your browser does not support HTML5 video. </video> CSS: #myVideo { position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; }