Created
September 30, 2025 15:13
-
-
Save alexandreelise/a5cb98d0c7960e650716ba9adc97534a to your computer and use it in GitHub Desktop.
Carousel
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="carouselExampleCaptions" class="carousel slide carousel-fade" data-bs-ride="carousel"> | |
<div class="carousel-indicators"> | |
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button> | |
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button> | |
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button> | |
</div> | |
<div class="carousel-inner"> | |
<div class="carousel-item active"> | |
<img src="https://placehold.co/200x100/orange/31343C?font=lato&text=Slide1" class="d-block w-100" alt="..."> | |
<div class="carousel-caption d-none d-md-block"> | |
<h5>First slide label</h5> | |
<p>Some representative placeholder content for the first slide.</p> | |
</div> | |
</div> | |
<div class="carousel-item"> | |
<img src="https://placehold.co/200x100/deeppink/gold?font=lato&text=Slide2" class="d-block w-100" alt="..."> | |
<div class="carousel-caption d-none d-md-block"> | |
<h5>Second slide label</h5> | |
<p>Some representative placeholder content for the second slide.</p> | |
</div> | |
</div> | |
<div class="carousel-item"> | |
<img src="https://placehold.co/200x100/dodgerblue/white?font=lato&text=Slide3" class="d-block w-100" alt="..."> | |
<div class="carousel-caption d-none d-md-block"> | |
<h5>Third slide label</h5> | |
<p>Some representative placeholder content for the third slide.</p> | |
</div> | |
</div> | |
</div> | |
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev"> | |
<span class="carousel-control-prev-icon" aria-hidden="true"></span> | |
<span class="visually-hidden">Previous</span> | |
</button> | |
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next"> | |
<span class="carousel-control-next-icon" aria-hidden="true"></span> | |
<span class="visually-hidden">Next</span> | |
</button> | |
</div> |
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
<script src="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/js/bootstrap.bundle.min.js"></script> |
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
<link href="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment