generated from acciojob/bootstrap-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b98822
commit 8eb8667
Showing
1 changed file
with
37 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> | ||
<title>Bootstrap Example</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<!-- Write your code here --> | ||
<!-- Bootstrap Bundle with Popper --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | ||
</body> | ||
|
||
<body> | ||
<div id="myCarousel" class="carousel slide"> | ||
<div class="carousel-inner"> | ||
<div class="first-slide carousel-item active"> | ||
<img src="https://www.shutterstock.com/shutterstock/photos/119831752/display_1500/stock-photo-lake-and-palms-mahe-island-seychelles-119831752.jpg" class="d-block w-100" alt="..."> | ||
</div> | ||
<div class="Second-slide carousel-item"> | ||
<img src="https://cdn.pixabay.com/photo/2024/03/05/22/04/bird-8615360_1280.jpg" class="d-block w-100" alt="..."> | ||
</div> | ||
<div class="third-slide carousel-item"> | ||
<img src="https://cdn.pixabay.com/photo/2024/03/05/22/04/bird-8615360_1280.jpg" class="d-block w-100" alt="..."> | ||
</div> | ||
<div class="fourth-slide carousel-item"> | ||
<img src="https://cdn.pixabay.com/photo/2024/03/05/22/04/bird-8615360_1280.jpg" class="d-block w-100" alt="..."> | ||
</div> | ||
<div class="fifth-slide carousel-item"> | ||
<img src="https://cdn.pixabay.com/photo/2024/03/05/22/04/bird-8615360_1280.jpg" class="d-block w-100" alt="..."> | ||
</div> | ||
</div> | ||
<button class="carousel-control-prev glyphicon-chevron-left left carousel-control" type="button" data-bs-target="#carouselExample" 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 glyphicon-chevron-right right carousel-control" type="button" data-bs-target="#carouselExample" data-bs-slide="next"> | ||
<span class="carousel-control-next-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Next</span> | ||
</button> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |