Definition
Page speed measures how quickly web pages load and become interactive for users. It directly affects search rankings, user engagement, conversion rates, and AI crawler efficiency. Google uses page speed as a ranking factor through Core Web Vitals: LCP (Largest Contentful Paint) under 2.5 seconds for loading, INP (Interaction to Next Paint, which replaced FID in March 2024) under 200 milliseconds for interactivity, and CLS (Cumulative Layout Shift) under 0.1 for visual stability.
Page speed matters because 53% of mobile users abandon sites that take longer than 3 seconds to load, and a 1-second delay can reduce conversions by 7%. Beyond user experience, page speed directly affects AI visibility in two ways: faster sites get more aggressive crawling from both search engines and AI crawlers (GPTBot, PerplexityBot, ClaudeBot account for 95%+ of crawler traffic), and page speed contributes to the overall quality signals that AI systems consider when selecting sources to cite.
Key optimization areas include image optimization (often 60–70% of page weight) using modern formats like WebP and AVIF with responsive sizing and lazy loading for below-fold images. Minimize render-blocking JavaScript and CSS—defer non-critical scripts, inline critical CSS, and code-split where possible. Implement CDNs for geographic distribution, enable browser caching, and optimize server response times.
For INP specifically (the newest Core Web Vital), focus on reducing JavaScript execution time during user interactions. Long tasks that block the main thread cause poor INP scores. Break up heavy computations, use web workers for processing, and defer non-essential event handlers.
Measure page speed using Google PageSpeed Insights for Core Web Vitals and optimization recommendations, Google Search Console for real-user field data, WebPageTest for detailed waterfall analysis, and Lighthouse for comprehensive audits. Prioritize fixing the biggest performance bottlenecks first—typically image optimization, JavaScript reduction, and server response time improvements yield the highest impact per effort.
Examples of Page Speed
- An e-commerce site compresses product images to WebP format and implements lazy loading, reducing LCP from 4.2s to 1.8s and seeing a 45% increase in mobile conversions
- A news website defers non-critical JavaScript and implements critical CSS inlining, improving INP from 380ms to 140ms and gaining faster AI crawler content retrieval
- A B2B site upgrades hosting and implements a CDN, cutting server response from 800ms to 150ms and observing 40% more pages crawled daily by both Googlebot and AI crawlers
- A blog optimizes hero images with responsive sizing and AVIF format, improving LCP from 5.1s to 2.0s and reducing bounce rates by 35%
