Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions submissions/docs/logo-alt-fix/README.md
Original file line number Diff line number Diff line change
@@ -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
13 changes: 13 additions & 0 deletions submissions/docs/logo-alt-fix/demo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>EaseMotion Logo Alt Fix</title>
<link rel="stylesheet" href="../../easemotion.min.css" />
</head>
<body>
<nav class="ease-center ease-fade-in">
<img src="../../assets/logo.png" alt="EaseMotion CSS logo" class="ease-slide-up" />
</nav>
</body>
</html>
10 changes: 10 additions & 0 deletions submissions/docs/logo-alt-fix/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
nav {
padding: 1rem;
background: #f9f9f9;
}



img {
height: 50px;
}
Loading