point d'ancrage
Pour définir et atteindre un point d'encrage:
(ref: http://www.echoecho.com/htmllinks08.htm)
To link to an anchor you need to:
-
Create a link pointing to the anchor
- Create the anchor itself.
An anchor is created using the <a> tag.
If you want to create an anchor called chapter4, you simply add this line where you want the anchor to be:
|
<p><a name="Italie" id="Italie"></a></p>
After doing this, you can make a link pointing to the anchor using the normal <a href> tag, like this:
|
Note:
When linking to an anchor on a page you need to put a # in front of the anchor.
When you link to an anchor on the same page, simply enter
|
When you link to anchors on external pages use this syntax:
|
Anchors are generally used when you create pages with considerable amounts of text. You would typically make an index at the top of the page linking to the anchors that have been added to key places in the text that follows.