Identify the language of the page or content

Applicable Role(s): Developer

Overview

Identifying the language of the page, or inline content as needed, is important for assistive technology so they can present content with the right pronunciation and spelling. It can also help browsers present the content in line with the user's settings.

Best Practices

  • Apply a lang attribute to the <html> element on all pages.
  • If part of a paragraph or other inline text switches into another language, indicate that in the element.
  • The language code needs to be valid. See the W3 School listing of possible lang values.

Pattern Examples

Note: do not apply a lang attribute to the following tags: <applet>, <base><basefont><br>, <frame>, <frameset>, <iframe><param>, <script>.

Global lang on <html> element

By default, a lang="[value]" attribute should be applied to all pages, containing a valid language code value.

<html lang="en">

Inline lang in text

Part of a paragraph is in French, so a <span> with a French lang attribute of is applied to that part.

<p>It has a certain <span lang="fr">je ne sais quois.</span></p>