What is the html code to cause a link to redirect to a certain part of the same page?

Same as an link to another page just reference it like this.

<a href="#id">id</a>

<a name="id">id</a>

Best of luck
 
On the part that you link, put:
<a href="Section_2">To Section 2</a>

On the part that you want to go to, put:
<a name="Section_2">Section 2</a>
 
Back
Top