I'm trying to adapt a web template to fit to my needs. The site looks like this one : http://tomcreus.com At the bottom left there are three buttons (1,2,3) which allow to change the background picture. I want to replace the pics with embedded videos. Is this possible? How difficult it is? Which part of the code do I need to post to help?
EDIT :
<ul class="pagination">
<li class="current"><a href="images/bg_img1.jpg">1</a></li>
<li><a href="images/bg_img1.jpg">2</a></li>
<li><a href="images/bg_img3.jpg">3</a></li>
</ul>
Thank you in advance!
You can put the
video
in side youranchor
tags like this.Just change the
src
of thesource
elements to a physical video file on your system/server OR give the URL of a video from a website.EDIT :
This w3schools link can be helpful in embedding a youtube video. And this link is for embedding physical video files in your html.
EDIT :
Check below two question. You might get some direction from there. It is for
HTML5