Responsive embed bootstrap does not work

0

I'm trying to implement the responsive embeded bootstrap because I need to put a video (.mov) on the site, but it's not working.

source: link

code:

<div class="embed-responsive embed-responsive-16by9">
  <iframe class="embed-responsive-item" src="//www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>

Does anyone know what I might be doing wrong? or if you have any tips from another responsive embed to run a .mov extension file it is of great help.

    
asked by anonymous 19.06.2017 / 16:08

1 answer

2

I think I just missed putting "https:" before the url.

<div class="embed-responsive embed-responsive-16by9">
  <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>
    
19.06.2017 / 16:54