GLOSSARY
Search Marketing FAQ
Concise answers to the most common questions relevant to SEO, GEO, CRO, and PPC. Filter by discipline, platform, and topic. Cortex references its corpus of platform-published best practices to draft each answer, with citations linking back to the source documents.
Showing 289-312 of 1947 questions
What are Core Web Vitals and why do they matter for SEO?SEOGooglePage Speed / Core Web Vitals+
Core Web Vitals are three Google metrics measuring real-user page experience - loading performance, interactivity, and visual stability. They matter for SEO because they are a confirmed ranking signal. Pages that pass all three thresholds provide a better user experience, earn ranking preference in competitive queries, and retain more visitors after the click.
in Core Web Vitals & Page Experience
What is Largest Contentful Paint (LCP) and what is a good score?SEOPage Speed / Core Web Vitals+
LCP measures the time it takes for the largest visible content element - typically a hero image or heading block - to finish rendering. A good LCP score is 2.5 seconds or faster. Scores between 2.5 and 4.0 seconds need improvement. Anything above 4.0 seconds is considered poor and negatively impacts user experience and rankings.
in Core Web Vitals & Page Experience
What is Interaction to Next Paint (INP) and why did it replace FID?SEOPage Speed / Core Web Vitals+
INP measures the delay between any user interaction - clicks, taps, key presses - and the browser's visual response throughout the entire page session. It replaced FID because FID only measured the first interaction's input delay. INP captures responsiveness across all interactions, providing a more complete picture of how a page actually feels to use.
in Core Web Vitals & Page Experience
What is Cumulative Layout Shift (CLS) and what causes poor scores?SEOPage Speed / Core Web Vitals+
CLS measures how much visible page content shifts unexpectedly during loading. Poor scores are caused by images without defined dimensions, ads or embeds injecting content above existing elements, web fonts swapping and resizing text, and dynamically loaded content pushing the layout around. A good CLS score is 0.1 or lower for stable visual experience.
in Core Web Vitals & Page Experience
What is Time to First Byte (TTFB) and how does it affect page performance?SEOPage Speed / Core Web Vitals+
TTFB measures the time between the browser's request and the first byte of the server's response. A slow TTFB delays everything downstream - rendering, interactivity, and visual completeness. While not a Core Web Vital itself, TTFB directly impacts LCP. Improve it by optimizing server configuration, using caching layers, and deploying a CDN.
in Core Web Vitals & Page Experience
How do I measure Core Web Vitals using PageSpeed Insights?SEOGooglePage Speed / Core Web Vitals+
Enter your URL at pagespeed.web.dev. PageSpeed Insights shows both field data from real users via the Chrome User Experience Report and lab data from a simulated Lighthouse audit. Field data reflects actual visitor experience and is what Google uses for ranking. Lab data helps diagnose specific issues causing poor performance scores.
in Core Web Vitals & Page Experience
How do I use Google Lighthouse to audit page performance?SEOGooglePage Speed / Core Web Vitals+
Open Chrome DevTools, navigate to the Lighthouse tab, and run an audit in Performance mode. Lighthouse generates a detailed report scoring LCP, INP, CLS, and other metrics alongside specific diagnostic recommendations. Use it for identifying render-blocking resources, oversized images, unused JavaScript, and layout shift triggers on individual pages during development and optimization.
in Core Web Vitals & Page Experience
What is CrUX data and how is it different from lab data?SEOGooglePage Speed / Core Web Vitals+
CrUX - Chrome User Experience Report - collects real-world performance data from actual Chrome users visiting your site. Lab data is generated by tools like Lighthouse simulating a page load in controlled conditions. Google uses CrUX field data for ranking decisions because it reflects genuine user experience rather than synthetic testing environments.
in Core Web Vitals & Page Experience
How do I use the Web Vitals Chrome extension?SEOPage Speed / Core Web Vitals+
Install the Web Vitals extension from the Chrome Web Store. It displays real-time LCP, INP, and CLS scores as you browse any page, updating dynamically with each interaction. Use it during development and QA to spot performance issues instantly without running full audits. It provides immediate feedback on how each page interaction affects scores.
in Core Web Vitals & Page Experience
How do I improve my LCP score?SEOPage Speed / Core Web VitalsImage Optimization+
Optimize your largest visible element - usually a hero image or heading. Compress and serve images in WebP or AVIF format, preload the LCP image, implement a CDN, reduce server response time, eliminate render-blocking CSS and JavaScript from the critical path, and inline critical CSS to accelerate the initial rendering of above-the-fold content.
in Core Web Vitals & Page Experience
How do I improve my INP score?SEOPage Speed / Core Web Vitals+
Break up long JavaScript tasks into smaller, asynchronous chunks so the main thread stays responsive. Defer non-essential scripts, remove unused JavaScript, optimize event handlers to execute quickly, reduce DOM size, and minimize third-party script impact. Use Chrome DevTools Performance panel to identify which interactions are slowest and which tasks are blocking the main thread.
in Core Web Vitals & Page Experience
How do I reduce CLS on my pages?SEOPage Speed / Core Web Vitals+
Set explicit width and height attributes on all images and video embeds. Reserve space for ads and dynamically loaded content using CSS aspect-ratio or min-height properties. Preload fonts with font-display: swap to prevent text reflow. Avoid inserting content above existing visible elements after the page has begun rendering for the user.
in Core Web Vitals & Page Experience
How do I improve my TTFB?SEOPage Speed / Core Web Vitals+
Upgrade hosting infrastructure or move to a faster provider. Implement server-side caching for dynamic pages. Use a CDN to serve content from edge locations closest to users. Optimize database queries and reduce server-side processing time. Enable HTTP/2 or HTTP/3 for faster connection handling. Minimize redirect chains that add round-trip latency before content delivery begins.
in Core Web Vitals & Page Experience
What is the difference between mobile and desktop Core Web Vitals scores?SEOGooglePage Speed / Core Web VitalsMobile Optimization+
Google evaluates mobile and desktop Core Web Vitals separately using distinct CrUX datasets. Mobile scores are typically worse due to slower processors, limited bandwidth, and smaller viewports. Since Google uses mobile-first indexing, your mobile Core Web Vitals scores carry more weight for ranking decisions. Always prioritize mobile performance optimization over desktop performance.
in Core Web Vitals & Page Experience
How much do Core Web Vitals actually impact search rankings?SEOLink BuildingPage Speed / Core Web Vitals+
Core Web Vitals are a confirmed but relatively lightweight ranking signal compared to content relevance and backlink authority. They serve as a tiebreaker between pages of similar quality and relevance. However, poor Core Web Vitals increase bounce rates and reduce engagement, which indirectly damages rankings through degraded user behavior signals over time.
in Core Web Vitals & Page Experience
What is the Page Experience signal and what factors does it include?SEOGooglePage Speed / Core Web Vitals+
The Page Experience signal is Google's combined assessment of how users experience a page. It includes Core Web Vitals - LCP, INP, and CLS - along with HTTPS security, mobile-friendliness, absence of intrusive interstitials, and safe browsing status. All factors must pass for Google to consider the page as delivering a good overall experience.
in Core Web Vitals & Page Experience
How do third-party scripts (ads, analytics, chat widgets) affect Core Web Vitals?SEOPage Speed / Core Web Vitals+
Third-party scripts are among the most common causes of poor Core Web Vitals. Ad scripts delay LCP and increase CLS by injecting content after render. Analytics and chat widgets add JavaScript that blocks the main thread, worsening INP. Audit every third-party script's impact using Lighthouse, defer non-critical ones, and remove those providing insufficient value.
in Core Web Vitals & Page Experience
How do I optimize fonts to improve LCP and CLS?SEOPage Speed / Core Web Vitals+
Preload your primary font files using link rel="preload" to avoid render delays. Use font-display: swap so text remains visible during font loading, then switch smoothly when the custom font arrives. Host fonts locally rather than relying on external requests. Limit the number of font weights and families to reduce total download size.
in Core Web Vitals & Page Experience
Does image lazy loading affect Core Web Vitals?SEOPage Speed / Core Web VitalsImage Optimization+
Lazy loading improves overall page speed by deferring offscreen images, but it must be applied correctly. Never lazy load the LCP image or any above-the-fold images - this delays their rendering and worsens LCP scores. Apply the loading="lazy" attribute only to images below the fold, and always include width and height attributes.
in Core Web Vitals & Page Experience
How do I set a performance budget for my website?SEOPage Speed / Core Web Vitals+
Define maximum thresholds for key metrics - total page weight, number of requests, JavaScript bundle size, LCP, INP, and CLS. Base budgets on competitor benchmarks and user expectations for your industry. Integrate budget checks into your CI/CD pipeline using tools like Lighthouse CI so performance regressions are flagged before code reaches production.
in Core Web Vitals & Page Experience
How do I prioritize which Core Web Vitals issues to fix first?SEOGooglePage Speed / Core Web VitalsAnalytics & Tracking+
Start with issues affecting the most URLs and the most traffic. Check the Core Web Vitals report in Google Search Console to see which metric has the highest percentage of poor URLs. Within that metric, prioritize fixes on your highest-traffic templates first - a single template fix can improve scores across thousands of pages simultaneously.
in Core Web Vitals & Page Experience
How do I monitor Core Web Vitals over time in Google Search Console?SEOGooglePage Speed / Core Web VitalsAnalytics & Tracking+
The Core Web Vitals report in GSC tracks your Good, Needs Improvement, and Poor URL counts over time for both mobile and desktop. Review it monthly to spot regressions caused by code deployments, plugin updates, or new third-party scripts. Set up email alerts in GSC to receive notifications when new issues are detected.
in Core Web Vitals & Page Experience
What is the impact of web hosting on Core Web Vitals?SEOPage Speed / Core Web Vitals+
Hosting quality directly affects TTFB, which cascades into LCP and overall page speed. Shared hosting plans with limited resources produce slower server response times than dedicated or cloud hosting. Upgrading to a faster host with SSD storage, adequate memory, and geographic proximity to your audience can improve Core Web Vitals scores immediately and significantly.
in Core Web Vitals & Page Experience
How do Single Page Applications (SPAs) affect Core Web Vitals?SEOPage Speed / Core Web Vitals+
SPAs load a single HTML shell then render content dynamically via JavaScript, which can severely impact LCP by delaying meaningful content rendering and worsen INP by overloading the main thread with framework processing. Mitigate these issues with server-side rendering or static site generation for initial page loads, then hydrate to SPA behavior after rendering.
in Core Web Vitals & Page Experience