I am having an issue with Bootstrap where the card I want to display on the right of an image is appearing below it instead.
I attempted to use the display: inline-block
property, but unfortunately, that did not solve the problem. I also explored other solutions suggested on this platform, but none of them seemed to work in my case. Therefore, I kindly request not to suggest those again.
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="52303d3d26212620332212677c617c627f333e223a3363">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<h1 style="text-align: center; font-size: 70px;">Crabapple Lake Parc</h1>
<img src="https://th.bing.com/th/id/R.bb60507b5a1f567e6b6592f375bf5e8d?rik=FgkA6Taf%2fHwJsA&pid=ImgRaw&r=0" alt="Group Picture" style="display: block; margin-left: auto; margin-right: auto; width: 50%;">
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Have Questions?</h5>
<a href="#" class="btn btn-primary">FAQ</a>
<a href="#" class="btn btn-primary">Contact Us</a>
</div>
</div>