- Courses
- HTML
- HTML top level tags
- <base>
- Permitted parents for base element
What are the permitted parents for the <base>
element?
The <base>
element is permitted only within the <head>
element of a document.
It cannot be placed inside any other element, ensuring that the base URL is consistently applied to all relative URLs in the document.
<head>
<base href="https://example.com/">
</head>