Created
April 27, 2022 12:08
-
-
Save semiarthanoian/88514711f46406810a3f4619b1134ff2 to your computer and use it in GitHub Desktop.
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>A Simple Carousel</title> | |
<link rel="stylesheet" href="carousel.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="carousel"> | |
<input id="indicator-1" class="carousel-indicator" type="radio" name="indicator" checked> | |
<img class="carousel-image" src="https://bit.ly/34O6BZO"> | |
<label for="indicator-1" class="carousel-button"></label> | |
<input id="indicator-2" class="carousel-indicator" type="radio" name="indicator"> | |
<img class="carousel-image" src="https://bit.ly/3ifqrjR"> | |
<label for="indicator-2" class="carousel-button"></label> | |
<input id="indicator-3" class="carousel-indicator" type="radio" name="indicator"> | |
<img class="carousel-image" src="https://bit.ly/3wfhy26"> | |
<label for="indicator-3" class="carousel-button"></label> | |
<input id="indicator-4" class="carousel-indicator" type="radio" name="indicator"> | |
<img class="carousel-image" src="https://bit.ly/363szIQ"> | |
<label for="indicator-4" class="carousel-button"></label> | |
</div><!-- .carousel --> | |
</div><!-- .container --> | |
<script src="carousel.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment