You can write whole website in just single web page.
I'm using :target for creating this repo
CSS
section {
display: none;
}
section:target {
display: block;
}
HTML
<a href="#home">Home</a>
<a href="#about">About</a>
<section id="home">
You can create whole website just in single page.
</section>...
gauravnumber.hashnode.dev1 min read