Improve page loading performance by delaying image loading until the image enters the viewport.
Usage
Simply add the loading="lazy" attribute to any <img> element.
Best For
- Blog images
- Product images
- Gallery pages
<img
src="image.jpg"
alt="Beautiful Landscape"
loading="lazy"
width="800"
height="600">