tl;dr: Use loading="lazy" to defer loading images that are off-screen until the user scrolls near them.

<img
  alt="A red flower"
  loading="lazy"
  src="/flower.jpg"
/>

This also works for <iframe loading="lazy" />.