I'm looking to rearrange the layout for mobile. I'd like to have the title first, followed by the image, then the paragraph, and finally the button.
<div class="container">
<div class="row">
<div class="col-md-6">
<h3 class="pt-5">Title</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit
</p>
<a href="#" class="btn btn-warning">submit</a>
</div>
<div class="col-md-6 col-xs-12 align-self-center">
<img src="img/duo.png" alt="image" />
</div>
</div>
</div>
Take a look at the image link below for a visual representation: