I have a video displayed in the header of my website, but it only starts playing once the user clicks on the home link in the menu to navigate to /index.html. It does not play automatically when the page first loads. I have also tried manually entering /index.html in the URL, but that did not work either. Here is the code I am using to display the video:
<video autoplay loop>
<source type="video/mp4" src="images/untitled.mp4" />
<source type="video/webm" src="images/untitled.webm" />
</video>
The website where you can see this issue is (source code available for review).
How can I make the video start playing automatically when the page initially loads?
Thank you