<!DOCTYPE html> <html> <body> <h1>The img loading attribute</h1> <!-- visible in viewport --> <img src="https://horje.com/avatar.png" alt="Wedding" style="width:100%"> <img src="https://horje.com/avatar.png" alt="Rocks" style="width:100%"> <!-- off-screen images --> <img src="https://horje.com/avatar.png" alt="Paris" style="width:100%" loading="lazy"> <img src="https://horje.com/avatar.png" alt="Nature" style="width:100%" loading="lazy"> <img src="https://horje.com/avatar.png" alt="Underwater" style="width:100%" loading="lazy"> <img src="https://horje.com/avatar.png" alt="Ocean" style="width:100%" loading="lazy"> <img src="https://horje.com/avatar.png" alt="Mountains" style="width:100%" loading="lazy"> </body> </html>