I'm currently working on a project that involves the following elements:
https://i.sstatic.net/rAZ0x.png
I have images for the left and right sections, as well as an image of a monkey. My goal is to create a layout where the left image occupies col-3 space, the right image also takes up col-3, and the monkey along with accompanying text are placed in the middle within a col-6 space. However, my attempts so far have resulted in everything stacking on top of each other, overflowing out of the screen, and not functioning as intended. How can I achieve this desired layout?
<section class="hero-area">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-xs-3">
<img src="images/hero-left.svg" class="" alt="">
</div>
<div class="col-xs-6 col-md-126>
<h1 class="">
<b>monKey</b> Generator</h1>
<br>
<h2 class="">Generate a
<b>unique monkey</b> avatar
<br> from a
<b>Banano public key</b>
</h2>
<img src="https://bananomonkeys.herokuapp.com/image?address=ban_3tapge8i4kw9wa4irgda7epm4gaurr4rnp7ybjziphkt48afd6ba5pnaegs6"
class="" alt="">
</div>
<div class="col-md-3 col-sm-3">
<img src="images/hero-right.svg" class="" alt="">
</div>
</div>
</div>
</section>