Responsive embed bootstrap does not work

Asked

Viewed 225 times

0

I am trying to implement the embeded Responsive of bootstrap, because I need to put a video (.mov) on the site, but it is not working.

source: http://getbootstrap.com/components/#Responsive-embed

code:

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

inserir a descrição da imagem aqui

anyone knows what I might be doing wrong? or if they have any tips from another embed Responsive to run an extension file. mov is of great help.

1 answer

2


I guess 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>
  • It really worked, I just need to know how to play the extension video. mov, I put in src but when it enters the download page, if you can help me, I am waiting, thanks in advance

Browser other questions tagged

You are not signed in. Login or sign up in order to post.