I'm trying to create a menu and some sections but when the site loads I want to hide the menu. I want to do this with a redirect to the first section. I know this can be done in java script but its not allowed.
I have used the refresh meta tag but its giving me a seizure from it looping. I've change "0" out with other numbers but the same thing happens. There is also enough to scroll to hide the menu.
<meta http-equiv="refresh" content="0; url=#home" />
<nav>
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
<section id="home">
<p>Hello World!</p>
</section>
I need it to redirect to the first section hiding the menu.