A Core Web Vital that measures the time until the largest visible content element (image or text block) renders in the viewport. Google recommends under 2.5 seconds.
A homepage hero image is often the LCP element; preloading it and using next-gen formats (WebP/AVIF) reduces LCP to under 1.5 seconds.
According to Google's research, sites that improve LCP from 'Poor' to 'Good' see an average 24% reduction in bounce rate — demonstrating the direct link between loading performance and user engagement.
Largest Contentful Paint
LCP
Every public page on a website — but especially homepages, landing pages, and high-traffic entry pages where the LCP element is most commonly a large hero image or headline.
<link rel="preload" as="image" href="/hero.webp"> to the page <head> — this instructs the browser to fetch it before it encounters the image in the HTML.Answer