Skip to main content

HTML Guide

Attribute “xmlns:o” not allowed here.

The “xmlns:o” attribute is not allowed because it is not part of the standard HTML attributes and typically appears due to improperly embedded XML or Office-related HTML content.

In HTML documents, the “xmlns” attribute is used to declare a namespace and is generally valid for certain elements when dealing with XML documents or XHTML. However, the “xmlns:o” attribute specifically relates to XML namespaces typically used in Microsoft’s Office XML formats (for example, when copying and pasting styled content from Word to an HTML editor). Since HTML5 doesn’t natively support these namespaces as valid HTML attributes and strictly validates against them, any non-standard attributes like “xmlns:o” generate validation errors.

To fix this issue, you should remove the “xmlns:o” attribute unless you are sure that it’s necessary for the function of your document, and the document should be processed in a way that supports such namespaces. If the content is not meant to include Office-specific data elements, it’s likely this attribute was accidentally included and can be safely removed.

Example of Incorrect HTML with “xmlns:o”

<!DOCTYPE html>
<html>
<head>
  <title>Sample Document</title>
</head>
<body xmlns:o="urn:schemas-microsoft-com:office:office">
  <p>This is a paragraph within a body tag falsely including an xmlns:o attribute.</p>
</body>
</html>

Corrected Example without “xmlns:o”

<!DOCTYPE html>
<html>
<head>
  <title>Sample Document</title>
</head>
<body>
  <p>This is a paragraph within a correctly structured HTML document.</p>
</body>
</html>

By removing the “xmlns:o” attribute, the HTML document complies with the W3C standards, leading to successful validation. If you require namespaces for XML processing, it’s essential to handle them outside the context of standard HTML or within an XML or XHTML document structure where such namespaces are appropriate and valid.

Learn more:

Related W3C validator issues