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>
More cards8
Show all