Created
April 27, 2022 12:03
-
-
Save semiarthanoian/84a4174cba8570717b2f068b67ef8ebd 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"> | |
<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" checked> | |
<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 --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment