My objective is to arrange these two buttons horizontally on the same level with the help of bootstrap.
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="492b26262d3a2d2929100e64646e4e643439656761">[email protected]</a>/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col mb-0">
<h2>Heading 2 text</h2>
<h4>Heading 4 text</h4>
<h4>Another heading 4 text</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<div class="text-center"><button>Button 1</button></div>
</div>
<div class="col mb-0">
<h2>Right Div</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<button>Button 2</button>
</div>
</div>
</div>
</body>
</html>
The current output looks like this. https://i.sstatic.net/4dD8l.png
However, I aim to align the two buttons horizontally as shown below. https://i.sstatic.net/OcSoD.png
Any assistance on achieving this alignment would be highly appreciated.
Edit: I would prefer a solution that does not involve adding new elements. Ideally, using only bootstrap or alternatively, utilizing CSS.