How to lazy load iframe and images.
You can use loading=’lazy’ in iframe and image tags to load them lazily. It will speed up your first page load extremely.
<img src='path to image' loading='lazy' />
<iframe src='path to image' loading='lazy'></iframe>
