From http://www.w3schools.com (Copyright Refsnes Data)
ExampleSpecify a default URL and a default target for all links on a page:
|
The <base> tag specifies a default address for links or a default target for linked documents.
The <base> tag goes inside the head element.
The <base> tag is supported in all major browsers.
In HTML the <base> tag has no end tag.
In XHTML the <base> tag must be properly closed.
DTD indicates in which DTD the attribute is allowed. S=Strict, T=Transitional, and F=Frameset.
Attribute | Value | Description | DTD |
---|---|---|---|
href | URL | Specifies the URL to use as the base URL for links in the page | STF |
target | _blank _parent _self _top framename |
Where to open all the links on the page. This attribute can be overridden by
using the target attribute in each link.
|
TF |
NONE
From http://www.w3schools.com (Copyright Refsnes Data)