The `loading="lazy"` attribute in an `<img>` element tells the browser to defer loading the image until it is about to enter the viewport. This improves page load performance, reduces bandwidth usage, and speeds up rendering for images that are not immediately visible.
In short: Use `loading="lazy"` to defer offscreen images until they are needed, improving performance and reducing unnecessary network requests.