I would like to ask how to make the layout you can see below with bootstrap grid system and also semantic html. Can I use semantic tags inside divs and how to make section 4 upper than 3?
the code i think of:
<div class="container">
<div class"row justify-content-between">
<section class="col-5">
1
</section>
<section class="col-5">
2
</section>
</div>
<div class"row justify-content-between">
<section class="col-5">
3
</section>
<section class="col-5" style="margin-top: -50px;">
4
</section>
</div>
</div>