How to create Anchors on webpages?

0 votes
How to create Anchors on Office Live webpages?
asked by anonymous

1 Answer

0 votes
To create a link that points to another place on the same page, you need to create two anchors:

1. an anchor in the spot that you are going to jump from
this anchor will have the syntax:
<a href="#someplace">go there</a>

2. a named anchor in the spot that you are going to jump to
this anchor will have the syntax:
<a name="someplace">you are here</a>
answered by anonymous