How To Create An Anchor Link
Link To a Specific Location On The Current Page
This example demonstrates how to use a link to jump to another location on the same page. For example, if you are reffering to Web Design somewhere at the top of your document and you want the user to jump to a reference further in the document you can give the link an Id as illustrated below.
<a href="/thewebpagename.html#LinkID">Website Design</a>
Example: Say the web page name is "
services.html" and the Link ID is "
WebDesign", you would create the link similar to this:
<a href="/services.html#WebDesign">Website Design</a>
The target link in the document would look like this:
<a name="WebDesign">Website Design</a>
Link to a Specific Location On Another Page
This example demonstrates how to use a link to jump to a specific location on another page. This link is from the home page, going to a target on the payment page:
<a href="/payment.html#Payment">Make a Payment</a>
This is the target on the payment page. The Link ID here is "
Payment":
<a name="Payment">Payment</a>