Last active
November 21, 2017 13:00
-
-
Save methyl/a3a8527256d5395d9216e80cba203a9f 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
.slide { | |
display: none | |
} | |
.slide:target { | |
display: block | |
} |
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> | |
<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> |
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
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment