So I have a website at this URL:
My goal is to achieve the following:
- I want the video to play in the banner and adjust the Iframe size based on the user's device resolution
- I want the video to autoplay
- I want the logo, text, & button to be displayed in front of the video (currently not working as expected)
Unfortunately, I don't have much knowledge of HTML5 and this is the best I could come up with.
Below is the code snippet that I have implemented so far, but I suspect there are many mistakes in it:
<div id="banner">
<iframe width="600" height="1000" src="https://www.youtube.com/embed/BkEQZc1RH5M?rel=0&controls=0&showinfo=0" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<div class="container">
<div class="title">
<h2>Welcome to Umbrella Corperation</h2>
<span class="byline">Come join our Wonderful Community</span></div>
<ul class="actions">
<img src="images/apilogo3.png" width="300" height="300" alt=""/>
<li><a href="http://umbrellacorperation.com/forum/" class="button">Click here for Forum Access</a></li>
</ul>
</div>
</div>
I would greatly appreciate any assistance in making this work as intended!