a-tag

       The a-tag is used to link pages together. Links are the new thing of www, and among other things gave name to one of the first browsers, Lynx. You can also make links internally on a page, e.g. from a table of contents to a chapter.
       Here's an example:

<a href="divex.html">Link 1</a>
<a href="divex.html#links">Link 2</a>
<a href="#links">Link 3</a>
<a name="links" />
       In the first case I have an ordinary link to an XHTML page. In the second case I link to a spot on this page. In the third case I do the same, but linking to a spot on the page where I am. Finally in the fourth case I define a spot, that might be linked to. In the first 3 cases there's a text within the tag (e.g. "Link 1") - this is a text, that will be shown in the browser underlined.
       One of the extra attributes, that can be put on an a tag, is target. Here you can link between the windows or frames already there. If you link to a target, and the browser don't know what you mean, a new window will be opened.
       You can also link directly to a picture. Take note, that big pictures will be "shrunk" in some browsers, while they will keep their size in others, and be augmented with scrollbars. You can make more advanced links by using javascript.

Concept last updated: 06/05 2004.

Relations

is a kind of

Other sources

a-tag Actionscript

Libellus