♿
AB-118
Lazy loading on below-fold images
What it means
Images below the fold use loading="lazy" for improved page load performance.
Why it matters
Lazy loading defers off-screen image loading, improving Largest Contentful Paint and reducing bandwidth for both users and AI crawlers.
✗
What's wrong
<img src="below-fold.jpg" alt="Content"> — no loading attribute.
✓
What's right
<img src="below-fold.jpg" alt="Content" loading="lazy">.
Check this rule on your site
Enter your URL to check just this one rule (AB-001).