Regarding the topic at hand, I am facing an issue with aligning multiple objects that should be enclosed in i tags side by side. Despite attempting to use li tags and float:left and right in CSS, the position remains unchanged. Can anyone provide guidance on how to adjust the positioning?
<section id="mypassion-section" class="bg-light text-muted py-5">
<div class="container">
<div class="row">
<div class="col-md-4 text-center">
<img src="img/logo.png" width="100px" height="100px" alt="" class="img-fluid mb-3 rounded-circle">
<h3>Student Growth</h3>
<p>Client Name Here <br>Before Course</p>
<i class="fa fa-play icon-left" aria-hidden="true"></i>
<p>After Course</p>
<i class="fa fa-play icon-right" aria-hidden="true"></i>
</div>