Documentation/Documents need title

Documents need title

ZMD019

When an <html> document is present, ensure <head> contains a non-empty <title> so browsers, assistive tech, and search previews can identify the page.

✅ Good

<html>
  <head>
    <title>Account Settings | ZemDomu</title>
  </head>
  <body>
    <main>...</main>
  </body>
</html>

❌ Bad

<html>
  <head></head>
  <body>
    <main>...</main>
  </body>
</html>

When: An <html> document has no <title>, or <title> exists but is empty

Warning: Document missing non-empty <title> in <head>

Solution: Add a concise, non-empty <title> value in the <head>.

Tips & edge cases

  • Keep titles specific to the page intent, not generic placeholders.
  • Pair a stable page title with a matching top-level heading for better orientation.