Base. Defines the base location for links on a page.
Relative links within a document (such as <a href="someplace.html"... or <img src="someimage.jpg"...) will become relative to the URI specified in the base tag.
The base tag must go inside the head element.
<head> <title>New HTML</title> <base href="http://www.voxquo.com/directory/" /> </head>