Contents / Previous / Next


Hyper-Links

The <A> tag is use to refer to an other document
or images, sound, movie, etc: <A HREF="URL">

The URL is specified as: resource_type:additional_information
Types for the Universal Resource Location (URL) include:

Examples: Local file: <A HREF="internet.html">Contents</A> HTTP (web page): <A HREF="http://www.gnu.org" target="_top"> GNU </A> Image with link: <A HREF="http://www.gnu.org" target="_top"> <IMG SRC="../../pictures/GNU.png"></A>

Anchors

Anchors define or reference a target locations in a document.

Defining an anchor: The reference document must
contain the anchor_name in an <A>tag, for example: <A name="anchor_name"></A>

You can then use it in a reference:

<A href="URL#anchor_name"></A> Example: <A HREF="http://www.felixgers.de/Teaching.html#robotics"></A>