Specify a base URL for all relative URLs on a page.
The href
attribute specifies the base URL for all relative URLs on a page.
<base href="URL">
Value | Description |
---|---|
URL | An absolute URL that acts as the base URL (like "http://www.example.com/") |
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<base href="https://horje.com">
</head>
<body>
<h1>The base href attribute</h1>
<p><img src="https://horje.com/avatar.png" width="24" height="39" alt="Stickman"> - Notice that we have only specified a relative address for the image. Since we have specified a base URL in the head section, the browser will look for the image at "https://horje.com/avatar.png".</p>
</body>
</html>
How to use HTML <base> Tag | HTML Tag |
What Audio Format and Browser will Support for HTML <base> Tag | HTML Tag |
Attributes for HTML <base> Tag | HTML Tag |
How to add HTML <base> href Attribute | HTML Tag |
How to add HTML <base> target Attribute | HTML Tag |
How to add HTML <base> target _blank Attribute | HTML Tag |
How to add HTML <base> target _self Attribute | HTML Tag |
How to add HTML <base> target _parent Attribute | HTML Tag |
How to add HTML <base> target _top Attribute | HTML Tag |
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |