Is there a way I can align an image and a card in the same line like in this example?
I want the image and card to be combined in one line, but when the page is viewed on mobile devices such as Android or iOS, I want the image to appear at the top with the card below it.
I have attempted to merge the image and card, but have been unsuccessful:
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bfddd0d0cbcccbcddecfff8a918f918d">[email protected]</a>/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6">
<img class="img-thumbnail" src="https://cdn.britannica.com/04/123704-050-023DC490/Pair-leather-shoes.jpg" alt="">
</div>
<div class="col">
<div class="card">
<div class="card-body">
<p class="fw-bold">{{ product.currency }}: {{ product.price|intcomma }}
<p>{{ product.category }}</p>
</p>
<hr>
<h5>Descriptions:</h5>
<p>{{ product.description }}</p>
<p class=""><span class="material-symbols-outlined">
call
</span>
{{ product.phone_number }}</p>
</div>
</div>
</div>
</div>
</div>