Skip to content

Instantly share code, notes, and snippets.

@methyl
Last active November 21, 2017 13:00
Show Gist options
  • Save methyl/a3a8527256d5395d9216e80cba203a9f to your computer and use it in GitHub Desktop.
Save methyl/a3a8527256d5395d9216e80cba203a9f to your computer and use it in GitHub Desktop.
.slide {
display: none
}
.slide:target {
display: block
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Slider with links</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="slide" id="slide-1">First slide</div>
<div class="slide" id="slide-2">Second slide</div>
<div class="slide" id="slide-3">Third slide</div>
<a href="#slide-1">1</a>
<a href="#slide-2">2</a>
<a href="#slide-3">3</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment