HTML Tags

HTML <base> Tag

The <base> tag specifies the base URL and/or target for all relative URLs in a document.
It defines a reference point so that links and resources (like images, CSS, or JavaScript files) without absolute URLs are resolved relative to the <base> URL.

You can only use one <base> tag inside a document, and it must appear inside the <head> element before any other relative URL.

Syntax

<base href="https://example.com/" target="_blank">
  • href: Specifies the base URL for all relative links in the document.
  • target: Defines the default target for all hyperlinks (e.g., _blank, _self, _parent, _top).

Example

<!DOCTYPE html>
<html>
<head>
  <title>Base Tag Example</title>
  <base href="https://html5andcss3.org/" target="_blank">
</head>
<body>
  <a href="learn-html/">Learn HTML</a>
  <img src="wp-content/uploads/2025/10/chrome.webp" alt="Chrome Logo" width="80">
</body>
</html>

Output

Browser Output

<base> tag has no any visible output

Browser Support

Chrome
Chrome
Firefox
Firefox
Edge
Edge
Safari
Safari
Opera
Opera
IE
IE9+
✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes

All major browser supports the <base> tag.

Notes

  • The <base> tag must be placed inside the <head> section.
  • Only one <base> tag is allowed per document.
  • If both href and target attributes are used, they affect all relative URLs and hyperlinks in the page.
  • To override the default target for specific links, use the target attribute directly on the <a> tag.
  • Improper use may cause resource links to break if relative URLs are incorrectly resolved.

Conclusion

The <base> tag helps maintain consistent and predictable link behavior across a website by defining a single reference point for all relative URLs. It simplifies development when multiple relative resources share a common base path.

Sign In Form

User your email and password to singn in

Don’t have an account, signup here : 

HTML5 & CSS3

Tools and Tutorials

Want a Website

Want a website for your business ?

Please fill out the details below, so we can reach out to you.

Registration Form

Signup to track your record and much more.

We have sent you an email with a registration link. Please click the link to verify your email address, or enter the 6-digit OTP provided in the email.

Didn't receive the OTP. Regenerate OTP Resend