HTML Old School
BASE tag
This tag is use to prepend all links in HTML document.
For example if we put <base href="http://msdn.microsoft.com">
then link <a href="./default.asp">
will be http://msdn.microsoft.com/default.asp .
Base tag attributes
1. href="URL"
URL that will be prepended to link's href.
2. target="_blank | _top | _parent | _self | naziv_frejma"
Defines targeted iframe or window.
Example: head/07base.html