I need to incorporate a carousel into this section of my code using only Bootstrap 5. However, the current implementation is not functioning as expected (the items are stationary):
This is the relevant HTML
snippet:
<div class="container px-4">
<div class="row gx-5">
<div class="col-md-4">
<div class="p-5 bg-danger">
<h5>
Online Meeting
</h5>
<p>
</p>
</div>
</div>
<div class="col-md-4">
<div class="p-5 bg-danger">
<h5>
Best Networking
</h5>
<p>
Lorem ipsum dolor sit a
</div>
</div>
<div class="col-md-4">
<div class="p-5 bg-danger">
<h5>
Best Education
</h5>
<p>
Sed ut perspiciatis unde omnis iste natus
</p>
</div>
</div>
</div>
</div>
I am looking for a solution that solely relies on Bootstrap and does not involve any external plugins like Owl Carousel. Is there a way to achieve this? Thank you.