
Embedding YouTube Video
Embedding Youtube video can be an annoying experience because the standard youtube embedding function from the blogger.com's content editor creates a set of HTML codes that is not responsive and probably a set of height an width creating a 4x3 aspect ratio.
<div class='w-75 mx-auto'>
<div class='video-container'>
<iframe>....youtube embedding code from youtube's sharing option..</iframe>
</div>
</div>
In the html coding above, we uses the Bootstrap built-in css style w-75 to limit the width to 75% of the containing html element's width and use mx-auto, which means margin:auto, to set the video to horizontally align.