<Base> The Base tag
The Base tag is used to indicate the locations of
relative URL's will be found. It is a global setting for the page and all
relative references on the page will refer to the "base" url.
Attributes
- HREF - sets the base URL. specific URL's can
be listed if they are full URL's such as "http://www.developingwebs.net"
- TARGET - sets the base target frame or window
for ALL the links on the page. Individual targets can be set on
the per case method.
Useage:
<base HREF="http://www.lunacytoons.com"
TARGET="_parent">
Result:
All
relative links will appear in the parent frame/window, and will have the
URL of http://www.lunacytoons.com/relativelink
where relativelink is the relative link in the href reference of a
subsequent link on the page.