-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/content examples #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
8f3f3c2
3181080
20700f9
23af3c3
5765d07
b2b8c32
a721d9e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,5 +1,5 @@ | ||||||
| <!doctype html> | ||||||
| <html lang="en"> | ||||||
| <html> | ||||||
| <head> | ||||||
| <meta charset="UTF-8" /> | ||||||
| <link | ||||||
|
|
@@ -14,7 +14,7 @@ | |||||
| rel="apple-touch-icon" | ||||||
| href="https://ui-components.ubilabs.com/favicon/v2-rc/apple-touch-icon.png" /> | ||||||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||||
| <title>Accessibility Done Wrong</title> | ||||||
| <title></title> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
Style Guide ReferencesFootnotes
|
||||||
| </head> | ||||||
| <body> | ||||||
| <div id="root"></div> | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
langattribute has been removed from the<html>tag. This is a critical accessibility issue as it violates WCAG 3.1.1 (Language of Page). Screen readers and other assistive technologies rely on this attribute to use the correct pronunciation and character sets. Please restore it to ensure the page itself is accessible.1Style Guide References
Footnotes
The resulting application must meet WCAG 2.2 AA standards. ↩