SlideShare una empresa de Scribd logo
1 de 50
How to
prepare for
Google’s page
experience
update
Rachel Costello
Technical SEO Consultant
Table of content
What we’ll cover
1. Google’s upcoming page experience update
2. The launch of Core Web Vitals
3. Creating a page experience audit
4. What you can do to prepare your website
You can learn a lot by keeping an eye on
what tools and external comms Google is
investing in.
Speed Update Rolls
Out for Mobile
Rankings
9th July 2018
Page Speed Used in
Desktop Rankings
9th April 2010
Google’s Test My
Site Tool Updated
25th February 2019
Google Search
Console Rolls Out
Speed Report
4th November 2019
PageSpeed Insights
Incorporates CrUX
Data
12th November 2019
Core Web Vitals
Launched
5th May 2020
Page Experience
Update Announced
28th May 2020
A snapshot of Google’s activity around site speed over the last 10 years:
Google’s page
experience update
Page experience is “a set of signals that
measure how users perceive the
experience of interacting with a web
page beyond its pure information value.”
• There is a new page in the Google Search documents on Google Developers
dedicated to ‘page experience,’ which sits alongside key topics like indexing,
JavaScript and mobile-friendliness.
• The page experience algorithm update will be released in May 2021.
• As Google originally stated, we have been given 6 months notice before it rolls
out.
• We have work to do. Google only pre-announces updates and provides
information like this when there are specific things we can improve. Remember
mobile-first indexing?
What we know about
page experience so far
Query relevance is still key for ranking,
but page experience will determine
rankings for sets of pages with similar
informational value.
The launch of
Google’s Core Web
Vitals
Web Vitals is “an initiative by Google to
provide unified guidance for quality
signals that, we believe, are essential to
delivering a great user experience on the
web.”
The 3 most
annoying things
about websites
Interactivity Visual StabilityLoading
Experiencing a never-ending
loading wheel, or a blank
page which slowly populates
with different tiles, like a very
slow and painful virtual jigsaw
being pieced together before
your eyes.
Seeing the thing you want
right in front of you and
clicking on it, with no
response. And then endlessly
clicking in the vain hope that
something might eventually
happen.
Going to click a button and
the screen shifts at the last
minute and you end up
clicking on a new thing
instead, then you have to go
back to find the thing you
actually wanted.
Web Vitals are a quantifiable way of
measuring user experience, this is why
Google has chosen them.
• Core Web Vitals are three metrics that help us to measure the user’s
experience of a page as it loads; not just objective load times.
• These will focus on three key areas of UX: loading performance, interactivity
and visual stability.
• They will be annually updated to cover even more elements of user experience
that are not yet being measured, such as smoothness and privacy.
What we know about
Web Vitals so far
What Core Web
Vitals measure
First Input Delay
(FID)
Cumulative Layout Shift
(CLS)
Largest Contentful Paint
(LCP)
Measures the time when the
largest text block or image
element is rendered on the
screen. This metric has
replaced FMP in lighthouse.
Measures the time from when
a user first interacts with your
site to when the browser is
actually able to respond.
Measures all unexpected
layout shifts that occur
between when the page
starts loading and when its
lifecycle state changes to
hidden.
Largest Contentful Paint
First Input Delay
Cumulative Layout Shift
Under 2.5s Under 100ms Less than 0.1
We have a 6-month
time period to fix
this before
Google’s update
rolls out
Putting together a
page experience
audit
The goal was to future-proof a client’s
site ahead of the upcoming algorithm
update by analysing the speed,
performance and user experience of key
page templates.
1. Document summary and intent
2. Priority list
3. Site speed landscape and page experience commentary
4. Speed and page experience performance benchmarking
5. Core Web Vitals fixes – LCP, FID and CLS
6. Mobile-friendliness fixes
7. Safe browsing fixes
8. HTTPS fixes
9. Interstitials fixes
10. List of resources
Page experience audit
structure
Remember, Core Web Vitals is just one
aspect of page experience.
Auditing and optimizing for CWV could be
cancelled out by security issues, for
example.
• Google Search Console: Useful for looking at how Core Web Vitals are trending
across the entire site as well as highlighting site security issues and mobile usability
issues.
• PageSpeed Insights: Useful for gathering Core Web Vitals scores for individual
pages and templates.
• WebPagetest: Useful for visualising page experience and running competitor
comparisons.
• Chrome DevTools: Useful for looking at loading dependencies and identifying the
LCP elements of your pages.
• Mobile-friendly Test: Useful for running mobile-friendly reports on a page-by-page
basis.
• Screaming Frog: Useful for analysing HTTPS and insecure content, as well as using
JavaScript rendering to analyse screenshots of interstitials.
• URL Profiler: Can be used to query the Mobile-friendly Test API and Google’s Safe
Browsing API at scale.
Page experience
measurement tools
Use visual
examples
• WebPagetest’s filmstrip view is really
helpful for demonstrating the
experience of a page loading.
• Comparing your client’s site against
competitors here can highlight areas
that they are doing well that you can
learn from.
• This also enhances the client’s
understanding by showing them
where page experience plays into
real-world examples.
The finished result
What you can do to
prepare your
website
Run page experience audits for the
websites you manage to get a better idea
of UX issues.
LCP measures the time when the largest text block or image element is rendered on the
screen. Google uses this metric to assess the visual aspect of a page loading for users.
Some key audit recommendations:
• Preload key requests: Add ‘link rel=“preload”’ attributes to prioritise the loading of
important resources.
• Eliminate render-blocking resources: Only ship the code that is needed, and defer or
async load resources that aren’t essential for core content loading.
• Remove unused scripts: Identify unused code through the ‘Network’ tab in Chrome
DevTools. Make sure to test these scripts first before recommending their removal to
see how crucial they are for the loading of content.
• Compress image file sizes: Use tools like Kraken.io or TinyJPG to compress large
images. You can also serve images via next-gen image formats such as WebP,
which often reduce file sizes.
• Defer offscreen resources: Lazy-loading can be implemented through using native
browser lazy-loading, the Intersection Observer or scroll and resize event handlers.
1. Optimising LCP
(Largest Contentful
Paint)
FID measures the time from when a user first interacts with your site to when the
browser is actually able process event handlers and respond to that interaction.
Some key audit recommendations:
• Eliminate render-blocking resources (also useful for auditing LCP)
• Remove unused scripts (also useful for auditing LCP)
• Reduce JavaScript execution time: Async or defer loading of large JavaScript
files, try minifying them, and also reduce reliance on client-side rendering.
• Minimise main thread work: Long tasks can be optimised through methods
such as code splitting, to serve code in smaller chunks, and using web workers
to deliver code off the main thread.
2. Optimising FID (First
Input Delay)
CLS measures the cumulative score of all unexpected layout shifts that occur
between when the page starts loading and when its lifecycle state changes to
hidden. CLS measures how much visible content shifts within the user’s viewport,
and to what extent, rather than being a timed metric.
Some key audit recommendations:
• Specify image and embed dimensions: You can specify these in the ‘img’
HTML tag. You can also use a CSS aspect ratio box to block out the required
space for images.
• Reserve space for embeds: Precompute sufficient space for embeds and style
a placeholder or fallback by finding the height of your final embed by inspecting
it with your browser developer tools.
3. Optimising CLS
(Cumulative Layout
Shift)
• Mobile-friendliness is determined by how easy the page is to use and navigate
on mobile devices. This can be tested by using Google’s Mobile-Friendly Test
and the Mobile Usability report in Google Search Console.
• Some of the key issues to watch out for are: incompatible plugins, viewport not
set, content wider than the screen, text too small to read and clickable
elements too close together.
• In addition to GSC, you can also use URL Profiler to query the Google Mobile
Friendly test API. If GSC returns no issues, it may be worth verifying this by
running a few hundred pages.
4. Optimising mobile-
friendliness
• Safe browsing looks at whether there is any malicious or deceptive content
detected on the website in question. This includes security issues like malware
and phishing content.
• To assess where or not a site is safe, check the ‘Security Issues’ report in
Google Search Console. This report will highlight instances of hacked content,
malware and unwanted software, and social engineering content which tricks
visitors into revealing confidential information or downloading software.
• In addition to GSC, you can also use URL Profiler to query the Google Safe
Browsing API. Consider running this across a broad subset of pages if an issue
is detected, to help to determine the cause.
5. Auditing safe
browsing
• All sites should be using HTTPS rather than HTTP to ensure secure
connections for users. You can spot check the connection security by looking
at the icon next to the URL in the Chrome browser. If any URLs have the Info,
Not secure or Dangerous icons, then this will need to be investigated and
fixed.
• To gain a more holistic view of non-secure pages, also run a full website crawl
which includes the resources on your site such as scripts, images, and most
importantly, pages with forms which require the input of user data. All internal
links to pages and scripts should be filtered down to the HTTP protocol to
identify any URLs or resources that need to be migrated to HTTPS.
• To get started with HTTPS auditing, look for expired certificates, HTTPS being
blocked by robots.txt, noindexing of HTTPS pages, check TLS versions, and
analyse content embeds.
6. Auditing HTTPS
• Interstitials that cover crucial content and impede the user’s journey on a site
should be avoided. As part of a mobile usability update in 2017, Google
introduced an interstitial penalty, which would demote pages in organic
rankings that didn’t have their content immediately accessible to users.
• Cookie banner and pop-up designs need to be analysed to make sure they
don’t take up too much of the viewport. The aim should be to make sure that
the most important hero element of a page remains unobstructed for users.
• To test the page templates just load up a few pages using each and manually
review. Alternatively, you could do a Screaming Frog list crawl on a small
quantity of pages, enabling JS rendering within the settings (make sure
rendered page screenshots is ticked too). Then just flick through the
screenshots for the URLs (which can be found on the ‘rendered page’ tab at
the bottom).
7. Optimising
interstitials
1. With Google’s page experience algorithm update coming in May 2021, the
time to optimise your website is now.
2. A Core Web Vitals audit will not cover all aspects of page experience; don’t
neglect mobile-usability, HTTPS, security and interstitial issues.
3. User experience is becoming an increasingly crucial aspect of SEO and
organic performance, a user-centric optimization strategy is key.
Key takeaways
https://webmasters.googleblog.com/2020/05/evaluating-page-experience.html
https://blog.chromium.org/2020/05/introducing-web-vitals-essential-metrics.html
https://webmasters.googleblog.com/2020/11/timing-for-page-experience.html
https://developers.google.com/search/docs/guides/page-experience
https://developers.google.com/web/fundamentals/performance/speed-tools
https://web.dev/optimize-lcp/
https://web.dev/optimize-fid/
https://web.dev/optimize-cls/
https://developers.google.com/search/docs/advanced/security/https
https://www.youtube.com/watch?v=AQqFZ5t8uNc
https://github.com/GoogleChrome/web-vitals/
Resources
Thank you.
builtvisible.com
Rachel Costello
Technical SEO Consultant
@rachellcostello

Más contenido relacionado

La actualidad más candente

Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Alex Wright
 
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...Ruth Everett
 
Rendering SEO (explained by Google's Martin Splitt)
Rendering SEO (explained by Google's Martin Splitt)Rendering SEO (explained by Google's Martin Splitt)
Rendering SEO (explained by Google's Martin Splitt)Anton Shulke
 
Navigating the critical rendering path - Jamie Alberico - VirtuaCon
Navigating the critical rendering path -  Jamie Alberico - VirtuaConNavigating the critical rendering path -  Jamie Alberico - VirtuaCon
Navigating the critical rendering path - Jamie Alberico - VirtuaConJamie Indigo
 
How to hack rankings with page speed optimisation
How to hack rankings with page speed optimisationHow to hack rankings with page speed optimisation
How to hack rankings with page speed optimisationPolly Pospelova
 
Deep crawl the chaotic landscape of JavaScript
Deep crawl the chaotic landscape of JavaScript Deep crawl the chaotic landscape of JavaScript
Deep crawl the chaotic landscape of JavaScript Onely
 
The New Renaissance of JavaScript - SMX London 2019
The New Renaissance of JavaScript - SMX London 2019The New Renaissance of JavaScript - SMX London 2019
The New Renaissance of JavaScript - SMX London 2019Onely
 
Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Rachel Anderson
 
SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...
SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...
SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...SearchLeeds
 
TechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsTechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsDavid Sottimano
 
TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...
TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...
TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...Catalyst
 
Rendering strategies: Measuring the devil's details in core web vitals - Jam...
Rendering strategies:  Measuring the devil's details in core web vitals - Jam...Rendering strategies:  Measuring the devil's details in core web vitals - Jam...
Rendering strategies: Measuring the devil's details in core web vitals - Jam...Jamie Indigo
 
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...Jamie Indigo
 
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based WebsitesMax Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based WebsitesMax Prin
 
The New Renaissance of JavaScript
The New Renaissance of JavaScriptThe New Renaissance of JavaScript
The New Renaissance of JavaScriptHamlet Batista
 
The Inbounder London - Jono Alderson
The Inbounder London - Jono AldersonThe Inbounder London - Jono Alderson
The Inbounder London - Jono AldersonWe Are Marketing
 
SEO for Angular - BrightonSEO 2018
SEO for Angular - BrightonSEO 2018SEO for Angular - BrightonSEO 2018
SEO for Angular - BrightonSEO 2018Jamie Indigo
 
Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5Hamlet Batista
 
AMP Do’s & Don’ts for Superhero Results #SearchCamp
AMP Do’s & Don’ts for Superhero Results #SearchCampAMP Do’s & Don’ts for Superhero Results #SearchCamp
AMP Do’s & Don’ts for Superhero Results #SearchCampAleyda Solís
 
Tech SEO + Site Migrations - SMX Munich
Tech SEO + Site Migrations - SMX MunichTech SEO + Site Migrations - SMX Munich
Tech SEO + Site Migrations - SMX MunichJamie Indigo
 

La actualidad más candente (20)

Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
Headless SEO: Optimising Next Gen Sites | brightonSEO 2021
 
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
Getting Started with Python and Machine Learning for SEO | BrightonSEO Octobe...
 
Rendering SEO (explained by Google's Martin Splitt)
Rendering SEO (explained by Google's Martin Splitt)Rendering SEO (explained by Google's Martin Splitt)
Rendering SEO (explained by Google's Martin Splitt)
 
Navigating the critical rendering path - Jamie Alberico - VirtuaCon
Navigating the critical rendering path -  Jamie Alberico - VirtuaConNavigating the critical rendering path -  Jamie Alberico - VirtuaCon
Navigating the critical rendering path - Jamie Alberico - VirtuaCon
 
How to hack rankings with page speed optimisation
How to hack rankings with page speed optimisationHow to hack rankings with page speed optimisation
How to hack rankings with page speed optimisation
 
Deep crawl the chaotic landscape of JavaScript
Deep crawl the chaotic landscape of JavaScript Deep crawl the chaotic landscape of JavaScript
Deep crawl the chaotic landscape of JavaScript
 
The New Renaissance of JavaScript - SMX London 2019
The New Renaissance of JavaScript - SMX London 2019The New Renaissance of JavaScript - SMX London 2019
The New Renaissance of JavaScript - SMX London 2019
 
Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.
 
SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...
SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...
SearchLeeds 2019 - Luke Monaghan - Site speed: Time to meet the mobile expect...
 
TechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsTechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOs
 
TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...
TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...
TechSEO Boost 2018: Implementing Hreflang on Legacy Tech Stacks Using Service...
 
Rendering strategies: Measuring the devil's details in core web vitals - Jam...
Rendering strategies:  Measuring the devil's details in core web vitals - Jam...Rendering strategies:  Measuring the devil's details in core web vitals - Jam...
Rendering strategies: Measuring the devil's details in core web vitals - Jam...
 
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
How Googlebot Renders (Roleplaying as Google's Web Rendering Service-- D&D st...
 
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based WebsitesMax Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
 
The New Renaissance of JavaScript
The New Renaissance of JavaScriptThe New Renaissance of JavaScript
The New Renaissance of JavaScript
 
The Inbounder London - Jono Alderson
The Inbounder London - Jono AldersonThe Inbounder London - Jono Alderson
The Inbounder London - Jono Alderson
 
SEO for Angular - BrightonSEO 2018
SEO for Angular - BrightonSEO 2018SEO for Angular - BrightonSEO 2018
SEO for Angular - BrightonSEO 2018
 
Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5Solving Complex JavaScript Issues and Leveraging Semantic HTML5
Solving Complex JavaScript Issues and Leveraging Semantic HTML5
 
AMP Do’s & Don’ts for Superhero Results #SearchCamp
AMP Do’s & Don’ts for Superhero Results #SearchCampAMP Do’s & Don’ts for Superhero Results #SearchCamp
AMP Do’s & Don’ts for Superhero Results #SearchCamp
 
Tech SEO + Site Migrations - SMX Munich
Tech SEO + Site Migrations - SMX MunichTech SEO + Site Migrations - SMX Munich
Tech SEO + Site Migrations - SMX Munich
 

Similar a How to prepare for Google's page experience update

Rachel Costello — The Landscape of Site Speed and Web Vitals
Rachel Costello — The Landscape of Site Speed and Web VitalsRachel Costello — The Landscape of Site Speed and Web Vitals
Rachel Costello — The Landscape of Site Speed and Web VitalsSemrush
 
Understanding and Fixing Core Web Vitals for SEO Results.pdf
Understanding and Fixing Core Web Vitals for SEO Results.pdfUnderstanding and Fixing Core Web Vitals for SEO Results.pdf
Understanding and Fixing Core Web Vitals for SEO Results.pdfWhiteBunnie
 
Understanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo resultsUnderstanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo resultsWhiteBunnie
 
Understanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo resultsUnderstanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo resultsWhiteBunnie
 
Core web vitals is the thing you should focus on if you own a website in 2021
Core web vitals is the thing you should focus on if you own a website in 2021Core web vitals is the thing you should focus on if you own a website in 2021
Core web vitals is the thing you should focus on if you own a website in 2021World Web Technology Pvt Ltd
 
Page Experience: Google's New Search Algorithm Update
Page Experience: Google's New Search Algorithm UpdatePage Experience: Google's New Search Algorithm Update
Page Experience: Google's New Search Algorithm UpdateDBS Interactive
 
Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...
Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...
Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...Nirvana Canada
 
SearchEngineOptimization-TheFullProcess.pdf
SearchEngineOptimization-TheFullProcess.pdfSearchEngineOptimization-TheFullProcess.pdf
SearchEngineOptimization-TheFullProcess.pdfwellshop shopping
 
Core Web Vitals.pptx
Core Web Vitals.pptxCore Web Vitals.pptx
Core Web Vitals.pptxSaraKurian3
 
5 Strategies to Improve Core Web Vitals
5 Strategies to Improve Core Web Vitals5 Strategies to Improve Core Web Vitals
5 Strategies to Improve Core Web VitalsJomer Gregorio
 
How to perform a technical SEO audit and ramp up your content strategy in 10 ...
How to perform a technical SEO audit and ramp up your content strategy in 10 ...How to perform a technical SEO audit and ramp up your content strategy in 10 ...
How to perform a technical SEO audit and ramp up your content strategy in 10 ...Waqar Ahmad
 
Office Interior Design Websites..........
Office Interior Design Websites..........Office Interior Design Websites..........
Office Interior Design Websites..........siriajadhav16
 
Office Interior Design Websites
Office Interior Design WebsitesOffice Interior Design Websites
Office Interior Design Websitessirriajadhav001
 
OFFICE INTERIOR DESIGN WEBSITES
OFFICE INTERIOR DESIGN WEBSITESOFFICE INTERIOR DESIGN WEBSITES
OFFICE INTERIOR DESIGN WEBSITESsirriajadhav001
 
Office Interior Design Websites............
Office Interior Design Websites............Office Interior Design Websites............
Office Interior Design Websites............sirrijadhav
 
How to Run an SEO Audit by yourself at home.pdf
How to Run an SEO Audit by yourself at home.pdfHow to Run an SEO Audit by yourself at home.pdf
How to Run an SEO Audit by yourself at home.pdfrrd87j8bkv
 
Understanding SEO.pdf
Understanding SEO.pdfUnderstanding SEO.pdf
Understanding SEO.pdf6underheart6
 

Similar a How to prepare for Google's page experience update (20)

Rachel Costello — The Landscape of Site Speed and Web Vitals
Rachel Costello — The Landscape of Site Speed and Web VitalsRachel Costello — The Landscape of Site Speed and Web Vitals
Rachel Costello — The Landscape of Site Speed and Web Vitals
 
Understanding and Fixing Core Web Vitals for SEO Results.pdf
Understanding and Fixing Core Web Vitals for SEO Results.pdfUnderstanding and Fixing Core Web Vitals for SEO Results.pdf
Understanding and Fixing Core Web Vitals for SEO Results.pdf
 
Understanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo resultsUnderstanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo results
 
Core Web Vitals in Website Design.pdf
Core Web Vitals in Website Design.pdfCore Web Vitals in Website Design.pdf
Core Web Vitals in Website Design.pdf
 
Understanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo resultsUnderstanding and fixing core web vitals for seo results
Understanding and fixing core web vitals for seo results
 
Core web vitals is the thing you should focus on if you own a website in 2021
Core web vitals is the thing you should focus on if you own a website in 2021Core web vitals is the thing you should focus on if you own a website in 2021
Core web vitals is the thing you should focus on if you own a website in 2021
 
Page Experience: Google's New Search Algorithm Update
Page Experience: Google's New Search Algorithm UpdatePage Experience: Google's New Search Algorithm Update
Page Experience: Google's New Search Algorithm Update
 
Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...
Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...
Is Poor Performance Dragging You Down? Here are Five Strategies to Maximize P...
 
SearchEngineOptimization-TheFullProcess.pdf
SearchEngineOptimization-TheFullProcess.pdfSearchEngineOptimization-TheFullProcess.pdf
SearchEngineOptimization-TheFullProcess.pdf
 
Core Web Vitals.pptx
Core Web Vitals.pptxCore Web Vitals.pptx
Core Web Vitals.pptx
 
Google seo tools
Google seo toolsGoogle seo tools
Google seo tools
 
5 Strategies to Improve Core Web Vitals
5 Strategies to Improve Core Web Vitals5 Strategies to Improve Core Web Vitals
5 Strategies to Improve Core Web Vitals
 
How to perform a technical SEO audit and ramp up your content strategy in 10 ...
How to perform a technical SEO audit and ramp up your content strategy in 10 ...How to perform a technical SEO audit and ramp up your content strategy in 10 ...
How to perform a technical SEO audit and ramp up your content strategy in 10 ...
 
Office Interior Design Websites..........
Office Interior Design Websites..........Office Interior Design Websites..........
Office Interior Design Websites..........
 
Office Interior Design Websites
Office Interior Design WebsitesOffice Interior Design Websites
Office Interior Design Websites
 
OFFICE INTERIOR DESIGN WEBSITES
OFFICE INTERIOR DESIGN WEBSITESOFFICE INTERIOR DESIGN WEBSITES
OFFICE INTERIOR DESIGN WEBSITES
 
Office Interior Design Websites............
Office Interior Design Websites............Office Interior Design Websites............
Office Interior Design Websites............
 
How to Run an SEO Audit by yourself at home.pdf
How to Run an SEO Audit by yourself at home.pdfHow to Run an SEO Audit by yourself at home.pdf
How to Run an SEO Audit by yourself at home.pdf
 
SEO Master Class - Steve Wiideman, Wiideman Consulting Group
SEO Master Class - Steve Wiideman, Wiideman Consulting GroupSEO Master Class - Steve Wiideman, Wiideman Consulting Group
SEO Master Class - Steve Wiideman, Wiideman Consulting Group
 
Understanding SEO.pdf
Understanding SEO.pdfUnderstanding SEO.pdf
Understanding SEO.pdf
 

Más de Builtvisible

Webinar: How to benefit from changing consumer demand
Webinar: How to benefit from changing consumer demandWebinar: How to benefit from changing consumer demand
Webinar: How to benefit from changing consumer demandBuiltvisible
 
GA4 Mini Training Webinar Deck.pdf
GA4 Mini Training Webinar Deck.pdfGA4 Mini Training Webinar Deck.pdf
GA4 Mini Training Webinar Deck.pdfBuiltvisible
 
Webinar: How and why to use social media to inform creative content
Webinar: How and why to use social media to inform creative contentWebinar: How and why to use social media to inform creative content
Webinar: How and why to use social media to inform creative contentBuiltvisible
 
Webinar: How to supercharge local SEO strategies for multi-location businesses
Webinar: How to supercharge local SEO strategies for multi-location businessesWebinar: How to supercharge local SEO strategies for multi-location businesses
Webinar: How to supercharge local SEO strategies for multi-location businessesBuiltvisible
 
Optimising your faceted navigation to target long-tail keywords
Optimising your faceted navigation to target long-tail keywordsOptimising your faceted navigation to target long-tail keywords
Optimising your faceted navigation to target long-tail keywordsBuiltvisible
 
Ecommerce quick wins you can implement today to boost SEO performance
Ecommerce quick wins you can implement today to boost SEO performanceEcommerce quick wins you can implement today to boost SEO performance
Ecommerce quick wins you can implement today to boost SEO performanceBuiltvisible
 
Checking google index status at scale
Checking google index status at scaleChecking google index status at scale
Checking google index status at scaleBuiltvisible
 
How to build a flexible content strategy
How to build a flexible content strategyHow to build a flexible content strategy
How to build a flexible content strategyBuiltvisible
 
How to make change happen in your organisation by talking your devs language
How to make change happen in your organisation by talking your devs languageHow to make change happen in your organisation by talking your devs language
How to make change happen in your organisation by talking your devs languageBuiltvisible
 
Google for jobs – Matt Hunt's top tips from Tea-time SEO
Google for jobs – Matt Hunt's top tips from Tea-time SEOGoogle for jobs – Matt Hunt's top tips from Tea-time SEO
Google for jobs – Matt Hunt's top tips from Tea-time SEOBuiltvisible
 
Crawling ecommerce sites – Maria Camanes' top tips from Tea-time SEO
Crawling ecommerce sites – Maria Camanes' top tips from Tea-time SEOCrawling ecommerce sites – Maria Camanes' top tips from Tea-time SEO
Crawling ecommerce sites – Maria Camanes' top tips from Tea-time SEOBuiltvisible
 
Reducing site speed - Rachel Costello's top tips from Tea-time SEO
Reducing site speed - Rachel Costello's top tips from Tea-time SEOReducing site speed - Rachel Costello's top tips from Tea-time SEO
Reducing site speed - Rachel Costello's top tips from Tea-time SEOBuiltvisible
 
Webinar: Common challenges with e commerce seo optimisation
Webinar: Common challenges with e commerce seo optimisationWebinar: Common challenges with e commerce seo optimisation
Webinar: Common challenges with e commerce seo optimisationBuiltvisible
 
Webinar: Turn browsers to customers with product page improvements
Webinar: Turn browsers to customers with product page improvementsWebinar: Turn browsers to customers with product page improvements
Webinar: Turn browsers to customers with product page improvementsBuiltvisible
 
Building a culture of measurement: PR Week Breakfast Briefing
Building a culture of measurement: PR Week Breakfast BriefingBuilding a culture of measurement: PR Week Breakfast Briefing
Building a culture of measurement: PR Week Breakfast BriefingBuiltvisible
 
Getting PR Onside with Data | SearchLove 2018
Getting PR Onside with Data | SearchLove 2018Getting PR Onside with Data | SearchLove 2018
Getting PR Onside with Data | SearchLove 2018Builtvisible
 
PPC Cost Analysis | Search Marketing Summit Australia 2
PPC Cost Analysis | Search Marketing Summit Australia 2PPC Cost Analysis | Search Marketing Summit Australia 2
PPC Cost Analysis | Search Marketing Summit Australia 2Builtvisible
 
Addressing Site Quality | Search Marketing Summit Australia
Addressing Site Quality | Search Marketing Summit AustraliaAddressing Site Quality | Search Marketing Summit Australia
Addressing Site Quality | Search Marketing Summit AustraliaBuiltvisible
 
SEO for Faceted Navigation | Get STAT City Crawl
SEO for Faceted Navigation | Get STAT City CrawlSEO for Faceted Navigation | Get STAT City Crawl
SEO for Faceted Navigation | Get STAT City CrawlBuiltvisible
 
Google Tag Manager Can Do What? | SMX London
Google Tag Manager Can Do What? | SMX LondonGoogle Tag Manager Can Do What? | SMX London
Google Tag Manager Can Do What? | SMX LondonBuiltvisible
 

Más de Builtvisible (20)

Webinar: How to benefit from changing consumer demand
Webinar: How to benefit from changing consumer demandWebinar: How to benefit from changing consumer demand
Webinar: How to benefit from changing consumer demand
 
GA4 Mini Training Webinar Deck.pdf
GA4 Mini Training Webinar Deck.pdfGA4 Mini Training Webinar Deck.pdf
GA4 Mini Training Webinar Deck.pdf
 
Webinar: How and why to use social media to inform creative content
Webinar: How and why to use social media to inform creative contentWebinar: How and why to use social media to inform creative content
Webinar: How and why to use social media to inform creative content
 
Webinar: How to supercharge local SEO strategies for multi-location businesses
Webinar: How to supercharge local SEO strategies for multi-location businessesWebinar: How to supercharge local SEO strategies for multi-location businesses
Webinar: How to supercharge local SEO strategies for multi-location businesses
 
Optimising your faceted navigation to target long-tail keywords
Optimising your faceted navigation to target long-tail keywordsOptimising your faceted navigation to target long-tail keywords
Optimising your faceted navigation to target long-tail keywords
 
Ecommerce quick wins you can implement today to boost SEO performance
Ecommerce quick wins you can implement today to boost SEO performanceEcommerce quick wins you can implement today to boost SEO performance
Ecommerce quick wins you can implement today to boost SEO performance
 
Checking google index status at scale
Checking google index status at scaleChecking google index status at scale
Checking google index status at scale
 
How to build a flexible content strategy
How to build a flexible content strategyHow to build a flexible content strategy
How to build a flexible content strategy
 
How to make change happen in your organisation by talking your devs language
How to make change happen in your organisation by talking your devs languageHow to make change happen in your organisation by talking your devs language
How to make change happen in your organisation by talking your devs language
 
Google for jobs – Matt Hunt's top tips from Tea-time SEO
Google for jobs – Matt Hunt's top tips from Tea-time SEOGoogle for jobs – Matt Hunt's top tips from Tea-time SEO
Google for jobs – Matt Hunt's top tips from Tea-time SEO
 
Crawling ecommerce sites – Maria Camanes' top tips from Tea-time SEO
Crawling ecommerce sites – Maria Camanes' top tips from Tea-time SEOCrawling ecommerce sites – Maria Camanes' top tips from Tea-time SEO
Crawling ecommerce sites – Maria Camanes' top tips from Tea-time SEO
 
Reducing site speed - Rachel Costello's top tips from Tea-time SEO
Reducing site speed - Rachel Costello's top tips from Tea-time SEOReducing site speed - Rachel Costello's top tips from Tea-time SEO
Reducing site speed - Rachel Costello's top tips from Tea-time SEO
 
Webinar: Common challenges with e commerce seo optimisation
Webinar: Common challenges with e commerce seo optimisationWebinar: Common challenges with e commerce seo optimisation
Webinar: Common challenges with e commerce seo optimisation
 
Webinar: Turn browsers to customers with product page improvements
Webinar: Turn browsers to customers with product page improvementsWebinar: Turn browsers to customers with product page improvements
Webinar: Turn browsers to customers with product page improvements
 
Building a culture of measurement: PR Week Breakfast Briefing
Building a culture of measurement: PR Week Breakfast BriefingBuilding a culture of measurement: PR Week Breakfast Briefing
Building a culture of measurement: PR Week Breakfast Briefing
 
Getting PR Onside with Data | SearchLove 2018
Getting PR Onside with Data | SearchLove 2018Getting PR Onside with Data | SearchLove 2018
Getting PR Onside with Data | SearchLove 2018
 
PPC Cost Analysis | Search Marketing Summit Australia 2
PPC Cost Analysis | Search Marketing Summit Australia 2PPC Cost Analysis | Search Marketing Summit Australia 2
PPC Cost Analysis | Search Marketing Summit Australia 2
 
Addressing Site Quality | Search Marketing Summit Australia
Addressing Site Quality | Search Marketing Summit AustraliaAddressing Site Quality | Search Marketing Summit Australia
Addressing Site Quality | Search Marketing Summit Australia
 
SEO for Faceted Navigation | Get STAT City Crawl
SEO for Faceted Navigation | Get STAT City CrawlSEO for Faceted Navigation | Get STAT City Crawl
SEO for Faceted Navigation | Get STAT City Crawl
 
Google Tag Manager Can Do What? | SMX London
Google Tag Manager Can Do What? | SMX LondonGoogle Tag Manager Can Do What? | SMX London
Google Tag Manager Can Do What? | SMX London
 

Último

Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdfChoosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdfAutus Digital
 
W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...William (Bill) H. Bender, FCSI
 
Kraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentationKraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentationtbatkhuu1
 
Best 5 Graphics Designing Course In Chandigarh
Best 5 Graphics Designing Course In ChandigarhBest 5 Graphics Designing Course In Chandigarh
Best 5 Graphics Designing Course In Chandigarhhamitthakurdma01
 
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfMicro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfPiyush Kumar
 
The Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfThe Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfVWO
 
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Labour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptxLabour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptxelizabethella096
 
Analysis of Sineing Website and how to fix
Analysis of Sineing Website and how to fixAnalysis of Sineing Website and how to fix
Analysis of Sineing Website and how to fixDHARMENDER PRATAP
 
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptxDigital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptxZACGaming
 
Elevate Your Advertising Game: Introducing Billion Broadcaster Lift Advertising
Elevate Your Advertising Game: Introducing Billion Broadcaster Lift AdvertisingElevate Your Advertising Game: Introducing Billion Broadcaster Lift Advertising
Elevate Your Advertising Game: Introducing Billion Broadcaster Lift AdvertisingVikasYadav194549
 
Major SEO Trends in 2024 - Banyanbrain Digital
Major SEO Trends in 2024 - Banyanbrain DigitalMajor SEO Trends in 2024 - Banyanbrain Digital
Major SEO Trends in 2024 - Banyanbrain DigitalBanyanbrain
 
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Unraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxUnraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxelizabethella096
 
Press Release Distribution Evolving with Digital Trends.pdf
Press Release Distribution Evolving with Digital Trends.pdfPress Release Distribution Evolving with Digital Trends.pdf
Press Release Distribution Evolving with Digital Trends.pdfPR Wires
 
[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies UncoveredSearch Engine Journal
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesSearch Engine Journal
 
Busty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
How consumers use technology and the impacts on their lives
How consumers use technology and the impacts on their livesHow consumers use technology and the impacts on their lives
How consumers use technology and the impacts on their livesMathuraa
 

Último (20)

Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdfChoosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
 
W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...
 
Kraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentationKraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentation
 
Best 5 Graphics Designing Course In Chandigarh
Best 5 Graphics Designing Course In ChandigarhBest 5 Graphics Designing Course In Chandigarh
Best 5 Graphics Designing Course In Chandigarh
 
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
 
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfMicro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
 
The Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfThe Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdf
 
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
 
Labour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptxLabour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptx
 
Analysis of Sineing Website and how to fix
Analysis of Sineing Website and how to fixAnalysis of Sineing Website and how to fix
Analysis of Sineing Website and how to fix
 
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptxDigital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptx
 
Elevate Your Advertising Game: Introducing Billion Broadcaster Lift Advertising
Elevate Your Advertising Game: Introducing Billion Broadcaster Lift AdvertisingElevate Your Advertising Game: Introducing Billion Broadcaster Lift Advertising
Elevate Your Advertising Game: Introducing Billion Broadcaster Lift Advertising
 
Major SEO Trends in 2024 - Banyanbrain Digital
Major SEO Trends in 2024 - Banyanbrain DigitalMajor SEO Trends in 2024 - Banyanbrain Digital
Major SEO Trends in 2024 - Banyanbrain Digital
 
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
 
Unraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxUnraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptx
 
Press Release Distribution Evolving with Digital Trends.pdf
Press Release Distribution Evolving with Digital Trends.pdfPress Release Distribution Evolving with Digital Trends.pdf
Press Release Distribution Evolving with Digital Trends.pdf
 
[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
 
Busty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Sector 135 Noida Escorts >༒8448380779 Escort Service
 
How consumers use technology and the impacts on their lives
How consumers use technology and the impacts on their livesHow consumers use technology and the impacts on their lives
How consumers use technology and the impacts on their lives
 

How to prepare for Google's page experience update

  • 1. How to prepare for Google’s page experience update Rachel Costello Technical SEO Consultant
  • 2. Table of content What we’ll cover 1. Google’s upcoming page experience update 2. The launch of Core Web Vitals 3. Creating a page experience audit 4. What you can do to prepare your website
  • 3. You can learn a lot by keeping an eye on what tools and external comms Google is investing in.
  • 4. Speed Update Rolls Out for Mobile Rankings 9th July 2018 Page Speed Used in Desktop Rankings 9th April 2010 Google’s Test My Site Tool Updated 25th February 2019 Google Search Console Rolls Out Speed Report 4th November 2019 PageSpeed Insights Incorporates CrUX Data 12th November 2019 Core Web Vitals Launched 5th May 2020 Page Experience Update Announced 28th May 2020 A snapshot of Google’s activity around site speed over the last 10 years:
  • 6. Page experience is “a set of signals that measure how users perceive the experience of interacting with a web page beyond its pure information value.”
  • 7. • There is a new page in the Google Search documents on Google Developers dedicated to ‘page experience,’ which sits alongside key topics like indexing, JavaScript and mobile-friendliness. • The page experience algorithm update will be released in May 2021. • As Google originally stated, we have been given 6 months notice before it rolls out. • We have work to do. Google only pre-announces updates and provides information like this when there are specific things we can improve. Remember mobile-first indexing? What we know about page experience so far
  • 8.
  • 9. Query relevance is still key for ranking, but page experience will determine rankings for sets of pages with similar informational value.
  • 10.
  • 11. The launch of Google’s Core Web Vitals
  • 12. Web Vitals is “an initiative by Google to provide unified guidance for quality signals that, we believe, are essential to delivering a great user experience on the web.”
  • 13. The 3 most annoying things about websites Interactivity Visual StabilityLoading Experiencing a never-ending loading wheel, or a blank page which slowly populates with different tiles, like a very slow and painful virtual jigsaw being pieced together before your eyes. Seeing the thing you want right in front of you and clicking on it, with no response. And then endlessly clicking in the vain hope that something might eventually happen. Going to click a button and the screen shifts at the last minute and you end up clicking on a new thing instead, then you have to go back to find the thing you actually wanted.
  • 14. Web Vitals are a quantifiable way of measuring user experience, this is why Google has chosen them.
  • 15. • Core Web Vitals are three metrics that help us to measure the user’s experience of a page as it loads; not just objective load times. • These will focus on three key areas of UX: loading performance, interactivity and visual stability. • They will be annually updated to cover even more elements of user experience that are not yet being measured, such as smoothness and privacy. What we know about Web Vitals so far
  • 16. What Core Web Vitals measure First Input Delay (FID) Cumulative Layout Shift (CLS) Largest Contentful Paint (LCP) Measures the time when the largest text block or image element is rendered on the screen. This metric has replaced FMP in lighthouse. Measures the time from when a user first interacts with your site to when the browser is actually able to respond. Measures all unexpected layout shifts that occur between when the page starts loading and when its lifecycle state changes to hidden.
  • 17.
  • 21. Under 2.5s Under 100ms Less than 0.1
  • 22.
  • 23. We have a 6-month time period to fix this before Google’s update rolls out
  • 24. Putting together a page experience audit
  • 25. The goal was to future-proof a client’s site ahead of the upcoming algorithm update by analysing the speed, performance and user experience of key page templates.
  • 26. 1. Document summary and intent 2. Priority list 3. Site speed landscape and page experience commentary 4. Speed and page experience performance benchmarking 5. Core Web Vitals fixes – LCP, FID and CLS 6. Mobile-friendliness fixes 7. Safe browsing fixes 8. HTTPS fixes 9. Interstitials fixes 10. List of resources Page experience audit structure
  • 27. Remember, Core Web Vitals is just one aspect of page experience.
  • 28. Auditing and optimizing for CWV could be cancelled out by security issues, for example.
  • 29. • Google Search Console: Useful for looking at how Core Web Vitals are trending across the entire site as well as highlighting site security issues and mobile usability issues. • PageSpeed Insights: Useful for gathering Core Web Vitals scores for individual pages and templates. • WebPagetest: Useful for visualising page experience and running competitor comparisons. • Chrome DevTools: Useful for looking at loading dependencies and identifying the LCP elements of your pages. • Mobile-friendly Test: Useful for running mobile-friendly reports on a page-by-page basis. • Screaming Frog: Useful for analysing HTTPS and insecure content, as well as using JavaScript rendering to analyse screenshots of interstitials. • URL Profiler: Can be used to query the Mobile-friendly Test API and Google’s Safe Browsing API at scale. Page experience measurement tools
  • 30. Use visual examples • WebPagetest’s filmstrip view is really helpful for demonstrating the experience of a page loading. • Comparing your client’s site against competitors here can highlight areas that they are doing well that you can learn from. • This also enhances the client’s understanding by showing them where page experience plays into real-world examples.
  • 32. What you can do to prepare your website
  • 33. Run page experience audits for the websites you manage to get a better idea of UX issues.
  • 34. LCP measures the time when the largest text block or image element is rendered on the screen. Google uses this metric to assess the visual aspect of a page loading for users. Some key audit recommendations: • Preload key requests: Add ‘link rel=“preload”’ attributes to prioritise the loading of important resources. • Eliminate render-blocking resources: Only ship the code that is needed, and defer or async load resources that aren’t essential for core content loading. • Remove unused scripts: Identify unused code through the ‘Network’ tab in Chrome DevTools. Make sure to test these scripts first before recommending their removal to see how crucial they are for the loading of content. • Compress image file sizes: Use tools like Kraken.io or TinyJPG to compress large images. You can also serve images via next-gen image formats such as WebP, which often reduce file sizes. • Defer offscreen resources: Lazy-loading can be implemented through using native browser lazy-loading, the Intersection Observer or scroll and resize event handlers. 1. Optimising LCP (Largest Contentful Paint)
  • 35.
  • 36. FID measures the time from when a user first interacts with your site to when the browser is actually able process event handlers and respond to that interaction. Some key audit recommendations: • Eliminate render-blocking resources (also useful for auditing LCP) • Remove unused scripts (also useful for auditing LCP) • Reduce JavaScript execution time: Async or defer loading of large JavaScript files, try minifying them, and also reduce reliance on client-side rendering. • Minimise main thread work: Long tasks can be optimised through methods such as code splitting, to serve code in smaller chunks, and using web workers to deliver code off the main thread. 2. Optimising FID (First Input Delay)
  • 37.
  • 38. CLS measures the cumulative score of all unexpected layout shifts that occur between when the page starts loading and when its lifecycle state changes to hidden. CLS measures how much visible content shifts within the user’s viewport, and to what extent, rather than being a timed metric. Some key audit recommendations: • Specify image and embed dimensions: You can specify these in the ‘img’ HTML tag. You can also use a CSS aspect ratio box to block out the required space for images. • Reserve space for embeds: Precompute sufficient space for embeds and style a placeholder or fallback by finding the height of your final embed by inspecting it with your browser developer tools. 3. Optimising CLS (Cumulative Layout Shift)
  • 39.
  • 40. • Mobile-friendliness is determined by how easy the page is to use and navigate on mobile devices. This can be tested by using Google’s Mobile-Friendly Test and the Mobile Usability report in Google Search Console. • Some of the key issues to watch out for are: incompatible plugins, viewport not set, content wider than the screen, text too small to read and clickable elements too close together. • In addition to GSC, you can also use URL Profiler to query the Google Mobile Friendly test API. If GSC returns no issues, it may be worth verifying this by running a few hundred pages. 4. Optimising mobile- friendliness
  • 41.
  • 42. • Safe browsing looks at whether there is any malicious or deceptive content detected on the website in question. This includes security issues like malware and phishing content. • To assess where or not a site is safe, check the ‘Security Issues’ report in Google Search Console. This report will highlight instances of hacked content, malware and unwanted software, and social engineering content which tricks visitors into revealing confidential information or downloading software. • In addition to GSC, you can also use URL Profiler to query the Google Safe Browsing API. Consider running this across a broad subset of pages if an issue is detected, to help to determine the cause. 5. Auditing safe browsing
  • 43.
  • 44. • All sites should be using HTTPS rather than HTTP to ensure secure connections for users. You can spot check the connection security by looking at the icon next to the URL in the Chrome browser. If any URLs have the Info, Not secure or Dangerous icons, then this will need to be investigated and fixed. • To gain a more holistic view of non-secure pages, also run a full website crawl which includes the resources on your site such as scripts, images, and most importantly, pages with forms which require the input of user data. All internal links to pages and scripts should be filtered down to the HTTP protocol to identify any URLs or resources that need to be migrated to HTTPS. • To get started with HTTPS auditing, look for expired certificates, HTTPS being blocked by robots.txt, noindexing of HTTPS pages, check TLS versions, and analyse content embeds. 6. Auditing HTTPS
  • 45.
  • 46. • Interstitials that cover crucial content and impede the user’s journey on a site should be avoided. As part of a mobile usability update in 2017, Google introduced an interstitial penalty, which would demote pages in organic rankings that didn’t have their content immediately accessible to users. • Cookie banner and pop-up designs need to be analysed to make sure they don’t take up too much of the viewport. The aim should be to make sure that the most important hero element of a page remains unobstructed for users. • To test the page templates just load up a few pages using each and manually review. Alternatively, you could do a Screaming Frog list crawl on a small quantity of pages, enabling JS rendering within the settings (make sure rendered page screenshots is ticked too). Then just flick through the screenshots for the URLs (which can be found on the ‘rendered page’ tab at the bottom). 7. Optimising interstitials
  • 47.
  • 48. 1. With Google’s page experience algorithm update coming in May 2021, the time to optimise your website is now. 2. A Core Web Vitals audit will not cover all aspects of page experience; don’t neglect mobile-usability, HTTPS, security and interstitial issues. 3. User experience is becoming an increasingly crucial aspect of SEO and organic performance, a user-centric optimization strategy is key. Key takeaways
  • 50. Thank you. builtvisible.com Rachel Costello Technical SEO Consultant @rachellcostello

Notas del editor

  1. Elements like bounce rates are difficult to measure correctly and have become almost a myth in terms of being measured for UX signals.
  2. A Core Web Vitals audit will miss wider key UX issues
  3. A Core Web Vitals audit will miss wider key UX issues
  4. A Core Web Vitals audit will miss wider key UX issues