Setting Anchors link

To set up an anchor named destination into a page insert:
      
    <a name="destination">you word </a>

To jump to destination anchor into the same page, insert this code:

 <a href="#destination">jump to destination anchor line</a>

for a different page insert:

 <a href="yourdestinationlink#destination">jump to destination anchor line on a different page</a>