previous | start | next


BASE

<BASE
HREF=url
TARGET=window>

Specifies the document's URL. Must appear inside the <HEAD>

HREF=url
Specifies the document's full URL in case the document gets read out of context and the reader wants to refer to the original.
TARGET=window
Specifies to load all the links on the page into the targeted window. This can be overridden by specifying a different target attribute for a specific link. The window can be one of these values:
window Specifies to load the link into the targeted window. The window must begin with an alphanumeric character to be valid, except for the following four target windows:
_blank Load the link into a new blank window. This window is not named.
_parent Load the link into the immediate parent of the document the link is in.
_self Load the link into the same window the link was clicked in.
_top Load the link into the full body of the window.

Examples

<BASE HREF="http:// www.sample.com/hello.htm"> 

<BASE HREF="http:// www.sample.com/hello.htm" TARGET="viewer">



previous | start | next