Skip to content

Instantly share code, notes, and snippets.

@tail-call
Created December 28, 2021 01:47
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 tail-call/3cabf63ae1bf6b8ff748298e608bcf22 to your computer and use it in GitHub Desktop.
Save tail-call/3cabf63ae1bf6b8ff748298e608bcf22 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sections demo</title>
<style>
section {
display: none;
}
section:target {
display: block;
}
</style>
</head>
<body>
<header>
<ul>
<li><a href="#a">A</a></li>
<li><a href="#b">B</a></li>
<li><a href="#c">C</a></li>
</ul>
</header>
<main>
<section id="a">
wow this is interesting
</section>
<section id="b">
look at all this content
</section>
<section id="c">
mmmm pretty nice isn't it
</section>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment