How To Create An In Page Jump Link.
There may be a time when your web page becomes very long. You want a way to be able to Jump to a certain section without having to scroll scroll scroll.
This can be achieved by doing two things.
One, you will need to add this piece of code at the destination
<a name="keyword">
You can optionaly wrap text or an image inside this.
<a name="keyword">Destination </a>
Two, you will need to wrap the source Text or Image in for following tag
<a href="#keyword">Source</a>