Skip to content
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

Added missing alt attributes to img elements. #731

Merged
merged 1 commit into from
Nov 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 14 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2693,7 +2693,8 @@ <h2 class="icon-title">
</h2>
<div class="icons">
<div>
<img src="images/icon-plain.svg">
<img src="images/icon-plain.svg" alt=
"An icon over a checkerboard background">
<div class="icon-title">
Image
</div>
Expand All @@ -2702,7 +2703,8 @@ <h2 class="icon-title">
</div>
</div>
<div>
<img src="images/icon-safe-zone.svg">
<img src="images/icon-safe-zone.svg" alt=
"An icon in a purple circle (40% of the size) over a yellow background">
<div class="icon-title">
Safe zone
</div>
Expand All @@ -2716,7 +2718,8 @@ <h2 class="icon-title">
</h2>
<div class="icons">
<div>
<img src="images/icon-mask-android-roundsquare.svg">
<img src="images/icon-mask-android-roundsquare.svg" alt=
"An icon inside a rounded yellow square on a purple background">
<div class="icon-title">
Rounded square
</div>
Expand All @@ -2725,7 +2728,8 @@ <h2 class="icon-title">
</div>
</div>
<div>
<img src="images/icon-mask-android-squircle.svg">
<img src="images/icon-mask-android-squircle.svg" alt=
"An icon inside an extremely rounded yellow square on a purple background">
<div class="icon-title">
Squircle
</div>
Expand All @@ -2734,7 +2738,8 @@ <h2 class="icon-title">
</div>
</div>
<div>
<img src="images/icon-mask-android-circle.svg">
<img src="images/icon-mask-android-circle.svg" alt=
"An icon inside a rounded yellow circle on a purple background">
<div class="icon-title">
Circle
</div>
Expand All @@ -2743,7 +2748,8 @@ <h2 class="icon-title">
</div>
</div>
<div>
<img src="images/icon-mask-ios.svg">
<img src="images/icon-mask-ios.svg" alt=
"An icon inside a somewhat rounded yellow square on a purple background">
<div class="icon-title">
Rounded square
</div>
Expand All @@ -2752,7 +2758,8 @@ <h2 class="icon-title">
</div>
</div>
<div>
<img src="images/icon-mask-windows.svg">
<img src="images/icon-mask-windows.svg" alt=
"An icon on a yellow background">
<div class="icon-title">
Fullbleed
</div>
Expand Down