Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
The simplest way would be to use anchor tags.
Otherwise you can use various JQuery plugins that allow you to create divs and navigate to different sections within the page
Generally <a> anchor tag do this things for you. Give id to the <div> or <p> or whatever tag where you want to navigate user and set <a href="#<id>">msg</a> where <id> is the actual id of your tag where you want your user to be navigated.
For example,
<a href="#divTest">Click Here!</a>
.
.
.
.
.
.
<div id="divTest">Test</div>