Hey everyone, I'm in the process of building a website with Bootstrap 3 and everything has been going smoothly so far. However, I've run into an issue when trying to embed a YouTube video using the responsive embed class provided by Bootstrap. Despite my best efforts, the video is not showing up on my site. I even tried copying the code directly from the Bootstrap documentation page, but it still isn't working! Can anyone offer some assistance? Here's my code:
<!-- PROMOTIONAL VIDEO -->
<section class="wrap" id="promo-video">
<div class="container">
<div class="header-section">
<h2>Check out the promotional video</h2>
</div>
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/watch?v=H0uvGe0AhNI"></iframe>
</div>
</div><!-- .col -->
</div><!-- row -->
</div><!-- .container -->
</section>
<!-- END PROMOTIONAL VIDEO -->