I am trying to achieve a layout similar to the example shown here:
https://i.sstatic.net/iMFx6.png
The design I have in mind involves creating a card that spans the full width of the container. Inside this card, I would like to display a video on the left side, text in the middle, and a button on the right side.
However, despite using Bootstrap, I am struggling to find the correct combination of HTML elements to replicate this structure.
Here is what I have attempted so far:
<div class="container mt-5">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-4">
VIDEO
</div>
<div class="col-4">
TEXT
</div>
<div class="col-4">
BTN
</div>
</div>
</div>
</div>
</div>
</div>
</div>