lundi 4 mars 2019

How can I redirect to another webpage from my embedded video on HTML?

I am coding a HTML Website and I embedded the video successfully.

 <section class="section1" id="videopage">

    <video  width=100%,  playsinline autoplay muted loop >
      <source src="Intro_BLACK.mp4" type="video/mp4"/>
    </video>

</section>

This worked very well.I want to know, however, how can I link a website on this embedded video. If I click the video, I want to redirect to another webpage. I tried like the below but it didn't work. Thanks in advance.

    <video  width=100%,  playsinline autoplay muted loop >
     <a href="http://www.naver.com" target="_blank" > <source src="Intro_BLACK.mp4" type="video/mp4"/>
    </video>


</section>




Aucun commentaire:

Enregistrer un commentaire