Tribute Page - could use some help with video

Here is my page so far!

I would like the video to be located to the right of the list but I’m not sure how. Also, the video won’t play and I can’t figure out why. Any help would be appreciated :slight_smile:

@STER170

You can’t use HTML5 video tag to play YouTube videos. YouTube provides an embed code for you.

So, change

      <div class = "col-md-6">
           <video width="400" controls>
            <source src="https://www.youtube.com/watch?v=Btqro3544p8" type="video/mp4">
      </div> 

To this

<div class = "col-md-6">
    <iframe width="560" height="315" src="https://www.youtube.com/embed/Btqro3544p8" frameborder="0" allowfullscreen>

Finally, to place the video on the right, you need to play around with changing the Bootstrap col-md-* sizes.

Thank you! I’ll try that