Created
September 9, 2020 17:43
-
-
Save royce002/859dc25dd76c15204e2dce1e5fabfc5e to your computer and use it in GitHub Desktop.
Carousel for Bootstrap 4.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel"> | |
<div class="carousel-inner"> | |
<div class="carousel-item active"> | |
<img src="..." class="d-block w-100" alt="..."> | |
</div> | |
<div class="carousel-item"> | |
<img src="..." class="d-block w-100" alt="..."> | |
</div> | |
<div class="carousel-item"> | |
<img src="..." class="d-block w-100" alt="..."> | |
</div> | |
</div> | |
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev"> | |
<span class="carousel-control-prev-icon" aria-hidden="true"></span> | |
<span class="sr-only">Previous</span> | |
</a> | |
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next"> | |
<span class="carousel-control-next-icon" aria-hidden="true"></span> | |
<span class="sr-only">Next</span> | |
</a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment