Skip to content

Files

Latest commit

 

History

History
31 lines (23 loc) · 521 Bytes

File metadata and controls

31 lines (23 loc) · 521 Bytes

Pattern: Invalid language code

Issue: -

Description

The lang attribute on HTML elements must use valid IETF BCP 47 language tags. Invalid language codes prevent screen readers from using the correct pronunciation rules.

Examples

Example of incorrect code:

<html lang="english">
  <body>Hello</body>
</html>

<html lang="123">
  <body>Content</body>
</html>

Example of correct code:

<html lang="en">
  <body>Hello</body>
</html>

<html lang="en-US">
  <body>Content</body>
</html>