Skip to content

Instantly share code, notes, and snippets.

@walidum
Created April 25, 2021 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save walidum/290ae0cc3027f6f89011ae92faad9da4 to your computer and use it in GitHub Desktop.
Save walidum/290ae0cc3027f6f89011ae92faad9da4 to your computer and use it in GitHub Desktop.
Images slider HTML CSS JS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SLIDER IMAGES</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="main">
<div class="slider">
<img id="img-slider"
src="images/im01.jpg">
</div>
<div class="actions">
<div onclick="previous()" class="previous">
<span>PREVIOUS</span>
</div>
<div onclick="next()" class="next">
<span>NEXT</span>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment