Here is a snippet of code that utilizes Bootstrap 4 to display text and images:
<div class="container">
<div class="row">
<div class="col-xl-12">
<img src="~/img/img1.png" style="height:60.3px;width:750px" class="mx-auto d-block" />
<p class="span12 pagination-centered" style="color: #2EBDBE;font-weight:bold;font-size:13px;margin-bottom: 0px;">.... </p>
<p class="span12 pagination-centered" style="color: #2EBDBE;font-weight:bold;font-size:13px;margin-bottom: 0px;">....</p>
<img src="~/img/img2.png" class="mx-auto d-block" />
<p class="span12 pagination-centered" style="color: #2EBDBE;font-weight:bold;font-size:13px;margin-bottom: 0px;">....</p>
<p class="span12 pagination-centered" style="color: #2EBDBE;font-weight:bold;font-size:13px;margin-bottom: 0px;">..../p>
</div>
</div>
</div>
If you would like to hide the two images on smaller screens and keep only the text visible, you can achieve this using Bootstrap 4. How can this be done? Thank you!