HTML < base > Tag - Learn About Website | DaddyFile

0

HTML <Base> Tag. 


Example

Specify a default URL and a default target for all links on a page:


<head>
<base href="http://www.daddyfile.com/search/label/%7CNews-Home%7C"target="_blank">
</head>

<body>
<img src="stickman.gif" width="24" height="39"alt="Stickman">
<a href="http://www.Daddyfile.com">Daddyfile</a>
</body>

Definition and Usage

The <base> tag specifies the base URL/target for all relative URLs in a document.
There can be at maximum one <base> element in a document, and it must be inside the <head> element.


Tips and Notes

Tip: Put the <base> tag as the first element inside the <head> element, so that other elements in the head section uses the information from the <base> element.
Note: If the <base> tag is present, it must have either an href attribute or a target attribute, or both.

Differences Between HTML 4.01 and HTML5

NONE.

Differences Between HTML and XHTML

In HTML the <base> tag has no end tag.
In XHTML the <base> tag must be properly closed.

Post a Comment

 
Top