**Hey everyone, I could really use some help. As a beginner coder, please forgive any errors in my code.
I am currently working on a webpage where I need to incorporate a carousel plugin within a panel body to display the latest photos. The code provided below is what I have used so far. However, the carousel is not functioning as expected. I would like the carousel to automatically start when the page loads and pause when hovered over. I am utilizing Bootstrap for this project but I'm unsure if it requires separate jQuery code to work properly. If so, I would greatly appreciate your assistance with that. Thank you in advance! **
<div id="myCarousel" class="carousel slide">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="item active">
<img src="pics/Sunset.jpg" alt="First slide">
</div>
<div class="item">
<img src="pics/Winter.jpg" alt="Second slide">
/<div>
<div class="item">
<img src="pics/Water lilies" alt="Third slide">
</div>
</div>
<!-- Carousel nav --> <a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a> <a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>