Base Tag
<base>
tag must be inside the <head>
element and contains a URL which serves as the base URL for all relative URLs in the page. There can be a maximum of one <base>
tag in a page.
Example usage:
<head>
<base href="https://www.example.com/path/" target="_blank">
</head>