I am trying to build a website with some basic functioning. I have added a navigation bar on the top->
<nav>
<ul>
<a href="#"><li>Create Member</li></a>
<a href="#"><li>Notifications</li></a>
<a href="#"><li>Edit Records</li></a>
<link rel="stylesheet" href="index.css">
</ul>
<div class="handle">Menu</div>
</nav>
<section>
</section>
Now in the main area , which should be initially empty, I wish it to display content according to menu selected from the navigation bar. For example for Create Member it should display a form; for notification it should display some message.
Can anyone guide me how should I do that.I have some understanding of Javascript and JQuery.