|
|
HTML <base> Tag Specifies the base URL/target for all relative URLs in a document. The The There can only be one single |
<!DOCTYPE html>
<html>
<head>
<base href="https://horje.com/learn/634/what-is-html-b-tag" target="_blank">
</head>
| Attribute | Value | Description |
|---|---|---|
| href | URL | Specifies the base URL for all relative URLs in the page |
| target | _blank _parent _self _top |
Specifies the default target for all hyperlinks and |
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/") |
<!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>
Specify a default target for all hyperlinks and forms on a page.
The target attribute specifies the default target for all hyperlinks and forms in the page.
This attribute can be overridden by using the target attribute for each hyperlink/form.

<base target="_blank|_self|_parent|_top">
| Value | Description |
|---|---|
| _blank | Opens the link in a new window or tab |
| _self | Default. Opens the link in the same frame as it was clicked |
| _parent | Opens the link in the parent frame |
| _top | Opens the link in the full body of the window |
<!DOCTYPE html>
<html>
<head>
<base target="_blank">
</head>
<body>
<h1>The base target attribute</h1>
<p><a href="https://horje.com">Horje.com</a> - Notice that the link opens in a new window, even if it has no target="_blank" attribute. This is because the target attribute of the base element is set to "_blank".</p>
</body>
</html>
| _blank | Opens the link in a new window or tab |
<!DOCTYPE html>
<html>
<head>
<base target="_blank">
</head>
<body>
<h1>The base target attribute</h1>
<p><a href="https://horje.com">Horje.com</a> - Notice that the link opens in a new window, even if it has no target="_blank" attribute. This is because the target attribute of the base element is set to "_blank".</p>
</body>
</html>
| _self | Default. Opens the link in the same frame as it was clicked |
<!DOCTYPE html>
<html>
<head>
<base target="_self">
</head>
<body>
<h1>The base target attribute</h1>
<p><a href="https://horje.com">Horje.com</a> - Notice that the link opens in a new window, even if it has no target="_blank" attribute. This is because the target attribute of the base element is set to "_self".</p>
</body>
</html>
| _parent | Opens the link in the parent frame |
<!DOCTYPE html>
<html>
<head>
<base target="_parent">
</head>
<body>
<h1>The base target attribute</h1>
<p><a href="https://horje.com">Horje.com</a> - Notice that the link opens in a new window, even if it has no target="_blank" attribute. This is because the target attribute of the base element is set to "_parent".</p>
</body>
</html>
| _top | Opens the link in the full body of the window |
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<h1>The base target attribute</h1>
<p><a href="https://horje.com">Horje.com</a> - Notice that the link opens in a new window, even if it has no target="_blank" attribute. This is because the target attribute of the base element is set to "_top".</p>
</body>
</html>
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |
Read Articlehttps://develop.horje.com/learn/1434/reference