<BASE>

Description:

This tag supplies a base address which is used by default. This is used when resolving URL references within the document which are relative. If the BASE tag is not specified the current document URL is used as the base.

This tag must be placed within the <HEAD> of your document.

Attributes:

href="url"
Base URL.
target = " targetwindow"

This attribute loads the document indicated by HREF into the window as indicated by "targetwindow".

Examples:

<HEAD>
<BASE HREF="http://www.internet-tips.net/">
</HEAD>
<A HREF="index.html">

Sets the document base to http://www.internet-tips.net/

In this case, the file "index.html" will resolve to:

http://www.internet-tips.net/index.html

regardless of the location of the document.