HTML <base> tag
HTML <base> tag
The <base>
tag specifies the base URL to use for all relative URLs contained within a document.
Note: There can be only one <base>
element in a document.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<head>
<title>HTML base Tag</title>
<base href="https://wikimass.com/">
</head>
<body>
<img src="books.png" width="100" height="100">
</body>
</html>
Attributes
The following are the attributes of <base> tag. Also try Global attributes.
Attribute | Value | Explanation |
---|---|---|
href | URL | Specifies the base URL for all relative URL's within a document. |
target | _blank _parent _self _top | Specifies where to display the result when hyperlinks or forms cause navigation. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.