diff --git a/submissions/docs/logo-alt-fix/README.md b/submissions/docs/logo-alt-fix/README.md new file mode 100644 index 0000000000..6f00b2e5d5 --- /dev/null +++ b/submissions/docs/logo-alt-fix/README.md @@ -0,0 +1,11 @@ +# Fix: Missing alt text on EaseMotion logo + +This submission fixes Issue #36517 by adding a descriptive `alt="EaseMotion CSS logo"` attribute to the logo image. +It improves accessibility for screen readers. + + +## Files + +- `demo.html` → Example navbar with corrected logo +- `style.css` → Basic styling for the demo +- `README.md` → Explanation of the fix diff --git a/submissions/docs/logo-alt-fix/demo.html b/submissions/docs/logo-alt-fix/demo.html new file mode 100644 index 0000000000..42c211cff5 --- /dev/null +++ b/submissions/docs/logo-alt-fix/demo.html @@ -0,0 +1,13 @@ + + + + + EaseMotion Logo Alt Fix + + + + + + diff --git a/submissions/docs/logo-alt-fix/style.css b/submissions/docs/logo-alt-fix/style.css new file mode 100644 index 0000000000..18457d1e94 --- /dev/null +++ b/submissions/docs/logo-alt-fix/style.css @@ -0,0 +1,10 @@ +nav { + padding: 1rem; + background: #f9f9f9; +} + + + +img { + height: 50px; +}