Missing lang attribute on <html> element: what it is, why it matters, and how to fix it
The <html> element does not specify a lang attribute. This attribute declares the primary language of the page content and is essential for screen readers, translation tools, and search engines.
Where this fits: accessibility in SEO
Why missing lang attribute on <html> element hurts your rankings
Without the lang attribute, screen readers may use the wrong pronunciation rules, making the content incomprehensible for visually impaired users. Search engines use the lang attribute as one signal for language targeting and serving the right version of your page to users in different regions. It is also a WCAG 2.1 Level A requirement (Success Criterion 3.1.1).
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Add the lang attribute to the <html> element using the appropriate BCP 47 language tag for your content's primary language.
<!-- English -->
<html lang="en">
<!-- Spanish -->
<html lang="es">
<!-- French (France) -->
<html lang="fr-FR">Frequently asked questions
What does "Missing lang attribute on <html> element" mean?
The <html> element does not specify a lang attribute. This attribute declares the primary language of the page content and is essential for screen readers, translation tools, and search engines.
Why does missing lang attribute on <html> element matter for SEO?
Without the lang attribute, screen readers may use the wrong pronunciation rules, making the content incomprehensible for visually impaired users. Search engines use the lang attribute as one signal for language targeting and serving the right version of your page to users in different regions. It is also a WCAG 2.1 Level A requirement (Success Criterion 3.1.1).
How do I fix missing lang attribute on <html> element?
Add the lang attribute to the <html> element using the appropriate BCP 47 language tag for your content's primary language.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the accessibility family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects missing lang attribute on <html> element on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by missing lang attribute on <html> element, and hands you a ready-made fix task.
Check my site free