Created
April 27, 2023 07:59
-
-
Save Mahfuj1990/86212f18fb0c516d54e45949d0a74ad5 to your computer and use it in GitHub Desktop.
Carousal (html,JavaScript, and css)
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 class="carousel"> | |
<img class="carousel-image" src="image1.jpg" alt="Image 1"> | |
<img class="carousel-image" src="image2.jpg" alt="Image 2"> | |
<img class="carousel-image" src="image3.jpg" alt="Image 3"> | |
<button class="carousel-button" id="prevBtn">Previous</button> | |
<button class="carousel-button" id="nextBtn">Next</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment