Last active
May 29, 2020 22:43
-
-
Save dhatGuy/e28c79839b2be5d8b159aa337679de92 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 name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Image Slider</title> | |
</head> | |
<body> | |
<h1>Image Slider</h1> | |
<div class="slide-container"> | |
<div class="slide fade"> | |
<img src='https://images.unsplash.com/photo-1590595978583-3967cf17d2ea?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''> | |
</div> | |
<div class="slide fade"> | |
<img src='https://images.unsplash.com/photo-1588807308097-fb6e5047df8c?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''> | |
</div> | |
<div class="slide fade"> | |
<img src='https://images.unsplash.com/photo-1589808710416-24cf7ac026f2?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''> | |
</div> | |
<div class="slide fade"> | |
<img src='https://images.unsplash.com/photo-1588796388882-a4d533c47e5e?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''> | |
</div> | |
<a href="#" class="prev" title="Previous">❮</a> | |
<a href="#" class="next" title="Next">❯</a> | |
</div> | |
<div class="dots-container"> | |
<span class="dot"></span> | |
<span class="dot"></span> | |
<span class="dot"></span> | |
<span class="dot"></span> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment