In long Web pages, it is useful to have a table of contents that link to different sections of the page.
To do this you need to tag fragments of your document and then link to these tags.
- <a name="Summary" /> Put this before your
summary to tag it.
- <a href="#Summary">Go to Summary</a>
These tags will underline "Go to Summary" in blue as a link.
This link will send you to the <a name="Summary">: tag in your document.
- <a href="http://someSite/somepage.html#someFragment">Click Here</a>
This is an absolute link to a specific fragment of another pages, namely to "someFragment" of "somepage.html" at "someSite".
|