← All resources
Images

Lazy-load below-the-fold images

Defer offscreen images with loading="lazy" to cut initial page weight.


Below-the-fold images don't need to load before first paint. Deferring them reduces initial bytes and frees bandwidth for what the visitor actually sees.

How to fix it

<img src="..." loading="lazy" width="600" height="600" alt="...">
More on Images
Run a check → Browse resources