I'm currently working on creating a carousel following the Bootstrap code snippet page. It features three images and is designed to have slide controls that move left and right. The script tags with the necessary scripts are located at the bottom of the file.
<!doctype html>
<head>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<a class="navbar-brand" href="#">Wantrepreneur</a>
...
<script src="js/vendor/bootstrap.bundle.min.js"></script>
<script src="js/vendor/jquery.slim.min.js"></script>
</html>
Despite following the instructions and including all the necessary scripts, I encountered an issue where clicking the control buttons does not result in image sliding or changing. The browser link changes from link.com
to
link.com#carouselExampleIndicators
, but the expected behavior doesn't occur. How can I resolve this problem?
Sincerely, Vinny