SlideShare a Scribd company logo
1 of 34
Cologne Web Performance Optimization Meetup #34
Core Web Vitals
Optimizing Speed and Usability
for Google's Core Web Vitals
Thanks to wao.io by Avenga for supporting the event!
Ingo Steinke
Creative Web Developer
Cologne Web Performance Optimization Meetup #34
Ingo Steinke
Creative Web Developer,
Web Performance Expert,
freelancer @ planted.green
co-hosting @cgnWebPerf
ingo-steinke.com
@fraktalisman
Cologne Web Performance Optimization Meetup #34
Core Web Vitals
Optimizing Speed and Usability
for Google's Core Web Vitals
Thanks to wao.io by Avenga for supporting the event!
Ingo Steinke
Creative Web Developer
Core Web Vitals: Web Performance and Usability
“Web Vitals is an initiative by Google to provide unified
guidance for quality signals that are essential to
delivering a great user experience on the web. Core Web
Vitals are the subset of Web Vitals that apply to all web
pages, should be measured by all site owners, and will
be surfaced across all Google tools.”
web.dev/vitals/#core-web-vitals
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
What's new anyway?
Why the hype?
“Most performance advice is the same we already knew,
or should have known, unless we never cared about
usability and only ever optimized for Time-to-First-Byte?”
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
LCP: Largest Contentful Paint, FID: First Input Delay, CLS: Cumulative Layout Shift
Cologne Web Performance Optimization Meetup #34
TBT
Total Blocking Time
Core Web Vitals: Web Performance and Usability
Measuring and Monitoring Web Vitals
● PageSpeed Insights
● Lighthouse
● WebPageTest
● GTMetrix
● Google Search Console
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
PageSpeed Insights:
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
Lighthouse:
Core Web Vitals: Web Performance and Usability
Measuring Core Web Vitals: WebPageTest
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
Measuring Core Web Vitals: GTMetrix
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
Monitoring Core Web Vitals: Google Search Console
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
LCP: Largest Contentful Paint, FID: First Input Delay, CLS: Cumulative Layout Shift
Cologne Web Performance Optimization Meetup #34
TBT
Total Blocking Time
Core Web Vitals: Web Performance and Usability
LCP: Largest Contentful Paint
● What does it measure?
● Why does it matter?
● How to optimize?
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
Largest Contentful Paint measures
interruptions due to waiting
Cologne Web Performance Optimization Meetup #34
From the user's point of view, loading a particular page doesn't represent a
natural break: they haven’t yet achieved their goal, which may make them less
tolerant of delays. The Largest Contentful Paint metric measures when a
page-to-page navigation appears complete to a user.
Aim to keep LCP under 2.5 seconds for 75% of page loads!
blog.chromium.org/2020/05/the-science-behind-web-vitals.html
Core Web Vitals: Web Performance and Usability
Largest Contentful Paint (LCP) vs.
First Contentful Paint (FCP)
Cologne Web Performance Optimization Meetup #34
“First Contentful Paint measures how long it takes for initial DOM content to
render, but it does not capture how long it took the largest (usually more
meaningful) content on the page to render.” (Houssein Djirdeh, Google)
web.dev/optimize-lcp/
Core Web Vitals: Web Performance and Usability
Common Causes for
Poor Largest Contentful Paint
● Slow server response times
● Slow resource load times
● Render-blocking JavaScript / CSS
● Client-side rendering
Cologne Web Performance Optimization Meetup #34
web.dev/optimize-lcp/
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
Slow Server Response Times
➢ optimize server,
➢ cache assets,
➢ use a CDN,
➢ use resource hints:
preconnect, dns-prefetch
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault
"access plus 5 minutes"
ExpiresByType image/jpeg
"access plus 1 month"
<link rel="dns-prefetch" href="https://fonts.gstatic.com/" >
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
smashingmagazine.com/2019/04/optimization-performance-resource-hints/
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
<img loading=”lazy”
srcset=”a.jpg b.jpg 2x”
Slow Resource Load Times
➢ optimize, compress, minify
➢ cache
➢ preload, lazy load
➢ responsive images, adaptive serving
navigator.connection.effectiveType // e.g. '4g'
navigator.connection.saveData // data-saver setting
navigator.hardwareConcurrency // CPU core count
navigator.deviceMemory // Device Memory
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
Render-Blocking Assets
➢ split, inline, minify, defer
.hero-image { background-size: cover; } /* inline critical css */
</style>
<link rel=stylesheet media=screen href="styles.css">
<link rel=stylesheet media=print onload="this.media='screen'" href="later.css">
Use the Coverage tab in Chrome DevTools to find “unused CSS” on your web page.
Remove any unused CSS, or better move it to another stylesheet if used on another
page of your site. Load styles, that are not needed for initial rendering, asynchronously.
Tools: loadCSS, Critical, CriticalCSS, Penthouse, Critters (webpack plugin).
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
Client-Side Rendering
⚠️ use pre-rendering /
server-side rendering (SSR) ?
“A server-rendered page may look like it can be interacted with,
but it can't respond to any user input until it is “hydrated” (all the
client-side JavaScript has executed). This can make Time to
Interactive (TTI) worse.” (Houssein Djirdeh, Google)
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
FID: First Input Delay
● What does it measure?
● Why does it matter?
● How to optimize?
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
First Input Delay (FID) vs.
Time To Interactive (TTI) to
measure low responsiveness
“Time to Interactive measures the time it takes for a page to be fully
interactive, when event handlers are registered for most page elements, and
user interaction is processed within 50ms. First Input Delay is different in that
it’s able to track user input that happens before the page is fully interactive. As
a purely real user metric, it cannot be simulated in a lab test. It requires user
interaction in order to be measured.” (Ziemek Bućko)
onely.com/blog/what-is-first-input-delay/
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
web.dev/fid/
Input Delay Optimization
➢ optimize JavaScript code
➢ reduce execution time
➢ minimize main thread work
➢ reduce request count and transfer size
➢ (don't) use asynchronous event handling
"would improve the metric but likely make the experience
worse" (Philip Walton)
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
TBT: Total Blocking Time
● What does it measure?
● Why does it matter?
● How to optimize?
TBT
Total Blocking Time
?
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
Total Blocking Time (TBT)
as a replacement for FID
TBT
Total Blocking Time
?
“Total Blocking Time is a Lighthouse Performance metric introduced in 2020
that quantifies your page's load responsiveness to user input. In the simplest
terms, TBT measures the total amount of time your webpage was blocked,
preventing the user from interacting with your page. It is one of the Web Vitals
and is a replacement for the field-only First Input Delay metric.”
gtmetrix.com/total-blocking-time.html
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
CLS: Cumulative Layout Shift
● What does it measure?
● Why does it matter?
● How to optimize?
Core Web Vitals: Web Performance and Usability
Cologne Web Performance Optimization Meetup #34
youtube.com/watch?v=AQqFZ5t8uNc
Cumulative Layout Shift:
“a giant chicken that kicks your content away”
(Addy Osmani)
Core Web Vitals: Web Performance and Usability
Cumulative Layout Shift measures
errors from instability
Cologne Web Performance Optimization Meetup #34
“If an element suddenly moves, your eyes have to find its new position.
Users may end up clicking a link or an ad or a "Buy Now" button unintentionally!
Layout shift significantly disrupts the user's intended journey. Cumulative Layout
Shift measures how frequent and severe unexpected layout shifts are on a page.
Recommended aim for a CLS: less than 0.1 for 75% of page loads.”
https://blog.chromium.org/2020/05/the-science-behind-web-vitals.html
Core Web Vitals: Web Performance and Usability
How to prevent Layout Shift
➢ define image dimensions
➢ reserve fixed height containers for
portals / ads / third-party content
➢ use a hero header
➢ use web fonts properly or not at all
to prevent flash of invisible /unstyled text (FOIT/FOUT)
Cologne Web Performance Optimization Meetup #34
zachleat.com/web/css-tricks-web-fonts/
<img
width=”200”
height=”200”
src=”example.com”
alt=”not shifty”
/>
Core Web Vitals: Web Performance and Usability
Conclusion
What's new anyway?
What’s new if you already optimize your page speed? Not much, unless you haven’t
cared about usability and user experience as well? Care about your users, optimize
time to interactive, and prevent layout shift!
My personal prediction: we as developers and designers should also start to care
about sustainability and reduce our website’s carbon footprint! Hopefully, this might
become another important ranking factor in the future.
Cologne Web Performance Optimization Meetup #34
Core Web Vitals: Web Performance and Usability
Discussion
Cologne Web Performance Optimization Meetup #34
● TBT is the total time of any tasks that take over 50ms. So if you had 3 tasks that take
35ms, 55ms and 80ms the TBT would be 35ms (55-50 and 80 - 50)
● CLS vs. web fonts
○ use variable fonts
○ preload regular font, other (bold, italic) to discover later if needed
○ HTTP Response Header makes browser request it (no server push):
link: <https://example.com/regular.woff2>; rel="preload";
as="font"; type="font/woff2"; crossorigin
● image dimensions vs. art direction and older browsers
○ width height must only put the proper ratio
○ use aspect ratio/intrinsic ratio for the image dimension problem
○ aspect ratio attribute, control by media queries,
○ intrinsic ratio trick with padding-bottom for old devices
○ css-tricks.com/aspect-ratio-boxes/
Core Web Vitals: Web Performance and Usability
Links
This presentation is mostly based on other people's work, mainly by Google's Addy Osmani
and Houssein Djirdeh, but I also owe to the German WordPress community and many more:
Cologne Web Performance Optimization Meetup #34
➔ wpdus.de/meetup-52/ (German)
➔ https://addyosmani.com/
➔ twitter.com/hdjirdeh
➔ web.dev/optimize-lcp/
➔ web.dev/optimize-cls/
➔ web.dev/http-cache/
➔ smashingmagazine.com/2019/04/optimization-performance-resource-hints/
➔ blog.chromium.org/2020/05/the-science-behind-web-vitals.html
➔ developers.google.com/web/fundamentals/performance/get-started/httpcaching-6
➔ dev.to/ingosteinke/optimizing-speed-and-usability-for-google-s-core-web-vitals-1286
➔ zachleat.com/web/css-tricks-web-fonts/
➔ github.com/filamentgroup/loadCSS
➔ github.com/addyosmani/critical
➔ criticalcss.com
➔ github.com/pocketjoso/penthouse
➔ github.com/GoogleChromeLabs/critters
Cologne Web Performance Optimization Meetup #35
Save the date:
Wednesday, 5 May 2021 at 19:00 CET
Online Meetup
Thanks to Avenga Germany and wao.io for Support

More Related Content

What's hot

Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings Michael King
 
Core Web Vitals and SEO: Don't Panic. Improve.
Core Web Vitals and SEO: Don't Panic. Improve.Core Web Vitals and SEO: Don't Panic. Improve.
Core Web Vitals and SEO: Don't Panic. Improve.Ian Lurie
 
Core Web Vitals - Why You Need to Pay Attention
Core Web Vitals - Why You Need to Pay AttentionCore Web Vitals - Why You Need to Pay Attention
Core Web Vitals - Why You Need to Pay AttentionTAC Marketing Group
 
Front end architecture
Front end architectureFront end architecture
Front end architectureRemus Langu
 
PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...
PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...
PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...LazarinaStoyanova
 
Performance culture through the looking-glass - performance.now() 2022
Performance culture through the looking-glass - performance.now() 2022Performance culture through the looking-glass - performance.now() 2022
Performance culture through the looking-glass - performance.now() 2022Dora Militaru
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Oleksii Prohonnyi
 
Introduction To Web Accessibility
Introduction To Web AccessibilityIntroduction To Web Accessibility
Introduction To Web AccessibilitySteven Swafford
 
Front end development session1
Front end development session1Front end development session1
Front end development session1marwa Ayad Mohamed
 
Introduction to Development for the Internet
Introduction to Development for the InternetIntroduction to Development for the Internet
Introduction to Development for the InternetMike Crabb
 
NY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep Dive
NY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep DiveNY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep Dive
NY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep DivePaul Calvano
 
Get Content Crawled & Ranked Faster: 5 Tips From An SEO Expert
Get Content Crawled & Ranked Faster: 5 Tips From An SEO ExpertGet Content Crawled & Ranked Faster: 5 Tips From An SEO Expert
Get Content Crawled & Ranked Faster: 5 Tips From An SEO ExpertSearch Engine Journal
 
Web accessibility 101: The why, who, what, and how of "a11y"
Web accessibility 101: The why, who, what, and how of "a11y"Web accessibility 101: The why, who, what, and how of "a11y"
Web accessibility 101: The why, who, what, and how of "a11y"ecentricarts
 
How to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress websiteHow to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress websiteIndigo Tree Digital
 
Avoiding callback hell in Node js using promises
Avoiding callback hell in Node js using promisesAvoiding callback hell in Node js using promises
Avoiding callback hell in Node js using promisesAnkit Agarwal
 
BrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise WebsitesBrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise WebsitesManick Bhan
 
Building an SEO Exponential Growth model by closing your content gaps
Building an SEO Exponential Growth model by closing your content gapsBuilding an SEO Exponential Growth model by closing your content gaps
Building an SEO Exponential Growth model by closing your content gapsRazvan Gavrilas
 

What's hot (20)

Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings Core Web Vitals and Your Search Rankings
Core Web Vitals and Your Search Rankings
 
Core Web Vitals and SEO: Don't Panic. Improve.
Core Web Vitals and SEO: Don't Panic. Improve.Core Web Vitals and SEO: Don't Panic. Improve.
Core Web Vitals and SEO: Don't Panic. Improve.
 
Core Web Vitals - Why You Need to Pay Attention
Core Web Vitals - Why You Need to Pay AttentionCore Web Vitals - Why You Need to Pay Attention
Core Web Vitals - Why You Need to Pay Attention
 
Front end architecture
Front end architectureFront end architecture
Front end architecture
 
Web accessibility
Web accessibilityWeb accessibility
Web accessibility
 
PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...
PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...
PubCon, Lazarina Stoy. - Machine Learning in Search: Google's ML APIs vs Open...
 
Performance culture through the looking-glass - performance.now() 2022
Performance culture through the looking-glass - performance.now() 2022Performance culture through the looking-glass - performance.now() 2022
Performance culture through the looking-glass - performance.now() 2022
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1
 
Introduction To Web Accessibility
Introduction To Web AccessibilityIntroduction To Web Accessibility
Introduction To Web Accessibility
 
Front end development session1
Front end development session1Front end development session1
Front end development session1
 
Introduction to Development for the Internet
Introduction to Development for the InternetIntroduction to Development for the Internet
Introduction to Development for the Internet
 
Progressive Web-App (PWA)
Progressive Web-App (PWA)Progressive Web-App (PWA)
Progressive Web-App (PWA)
 
Foxtail Website Audit
Foxtail Website AuditFoxtail Website Audit
Foxtail Website Audit
 
NY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep Dive
NY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep DiveNY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep Dive
NY WebPerf Sept '22 - Performance Mistakes - An HTTP Archive Deep Dive
 
Get Content Crawled & Ranked Faster: 5 Tips From An SEO Expert
Get Content Crawled & Ranked Faster: 5 Tips From An SEO ExpertGet Content Crawled & Ranked Faster: 5 Tips From An SEO Expert
Get Content Crawled & Ranked Faster: 5 Tips From An SEO Expert
 
Web accessibility 101: The why, who, what, and how of "a11y"
Web accessibility 101: The why, who, what, and how of "a11y"Web accessibility 101: The why, who, what, and how of "a11y"
Web accessibility 101: The why, who, what, and how of "a11y"
 
How to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress websiteHow to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress website
 
Avoiding callback hell in Node js using promises
Avoiding callback hell in Node js using promisesAvoiding callback hell in Node js using promises
Avoiding callback hell in Node js using promises
 
BrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise WebsitesBrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
 
Building an SEO Exponential Growth model by closing your content gaps
Building an SEO Exponential Growth model by closing your content gapsBuilding an SEO Exponential Growth model by closing your content gaps
Building an SEO Exponential Growth model by closing your content gaps
 

Similar to Core web Vitals: Web Performance and Usability

Measuring User on the web with the core web vitals - by @theafolayan.pptx
Measuring User on the web with the core web vitals - by @theafolayan.pptxMeasuring User on the web with the core web vitals - by @theafolayan.pptx
Measuring User on the web with the core web vitals - by @theafolayan.pptxOluwaseun Raphael Afolayan
 
Ahead of the Curve: How 23andMe Improved UX with Performance Edge
Ahead of the Curve: How 23andMe Improved UX with Performance EdgeAhead of the Curve: How 23andMe Improved UX with Performance Edge
Ahead of the Curve: How 23andMe Improved UX with Performance EdgeOptimizely
 
How to prepare for Google's page experience update
How to prepare for Google's page experience updateHow to prepare for Google's page experience update
How to prepare for Google's page experience updateBuiltvisible
 
Web.dev extended : What's new in Web [GDG Taichung]
Web.dev extended : What's new in Web [GDG Taichung]Web.dev extended : What's new in Web [GDG Taichung]
Web.dev extended : What's new in Web [GDG Taichung]Chieh Kai Yang
 
An Introduction to Pagespeed Optimisation
An Introduction to Pagespeed OptimisationAn Introduction to Pagespeed Optimisation
An Introduction to Pagespeed OptimisationPratyush Majumdar
 
How and Why ($) to improve web performance.pdf
How and Why ($) to improve web performance.pdfHow and Why ($) to improve web performance.pdf
How and Why ($) to improve web performance.pdfAndrea Verlicchi
 
Demystifying Web Vitals
Demystifying Web VitalsDemystifying Web Vitals
Demystifying Web VitalsSamar Panda
 
A Designer's Guide to Web Performance
A Designer's Guide to Web PerformanceA Designer's Guide to Web Performance
A Designer's Guide to Web PerformanceKevin Mandeville
 
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
 
Client-side Web Performance Optimization [paper]
Client-side Web Performance Optimization [paper]Client-side Web Performance Optimization [paper]
Client-side Web Performance Optimization [paper]Jakob
 
Core Web Vitals.pptx
Core Web Vitals.pptxCore Web Vitals.pptx
Core Web Vitals.pptxSaraKurian3
 
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...SOASTA
 
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
 
Browser core red bus presentation
Browser core red bus presentation Browser core red bus presentation
Browser core red bus presentation redBus India
 
CrUx Report and Improving Web vitals
CrUx Report and Improving Web vitalsCrUx Report and Improving Web vitals
CrUx Report and Improving Web vitalsPratyush Majumdar
 
Supercharging Optimizely Performance by Moving Decisions to the Edge
Supercharging Optimizely Performance by Moving Decisions to the EdgeSupercharging Optimizely Performance by Moving Decisions to the Edge
Supercharging Optimizely Performance by Moving Decisions to the EdgeOptimizely
 

Similar to Core web Vitals: Web Performance and Usability (20)

Measuring User on the web with the core web vitals - by @theafolayan.pptx
Measuring User on the web with the core web vitals - by @theafolayan.pptxMeasuring User on the web with the core web vitals - by @theafolayan.pptx
Measuring User on the web with the core web vitals - by @theafolayan.pptx
 
Ahead of the Curve: How 23andMe Improved UX with Performance Edge
Ahead of the Curve: How 23andMe Improved UX with Performance EdgeAhead of the Curve: How 23andMe Improved UX with Performance Edge
Ahead of the Curve: How 23andMe Improved UX with Performance Edge
 
How to prepare for Google's page experience update
How to prepare for Google's page experience updateHow to prepare for Google's page experience update
How to prepare for Google's page experience update
 
Web.dev extended : What's new in Web [GDG Taichung]
Web.dev extended : What's new in Web [GDG Taichung]Web.dev extended : What's new in Web [GDG Taichung]
Web.dev extended : What's new in Web [GDG Taichung]
 
An Introduction to Pagespeed Optimisation
An Introduction to Pagespeed OptimisationAn Introduction to Pagespeed Optimisation
An Introduction to Pagespeed Optimisation
 
Web Vitals.pptx
Web Vitals.pptxWeb Vitals.pptx
Web Vitals.pptx
 
How and Why ($) to improve web performance.pdf
How and Why ($) to improve web performance.pdfHow and Why ($) to improve web performance.pdf
How and Why ($) to improve web performance.pdf
 
Demystifying Web Vitals
Demystifying Web VitalsDemystifying Web Vitals
Demystifying Web Vitals
 
Web performance e-book
Web performance e-bookWeb performance e-book
Web performance e-book
 
Designers Guide to Web Performance Yotta 2013
Designers Guide to Web Performance Yotta 2013Designers Guide to Web Performance Yotta 2013
Designers Guide to Web Performance Yotta 2013
 
A Designer's Guide to Web Performance
A Designer's Guide to Web PerformanceA Designer's Guide to Web Performance
A Designer's Guide to Web Performance
 
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
 
Lighthouse
LighthouseLighthouse
Lighthouse
 
Client-side Web Performance Optimization [paper]
Client-side Web Performance Optimization [paper]Client-side Web Performance Optimization [paper]
Client-side Web Performance Optimization [paper]
 
Core Web Vitals.pptx
Core Web Vitals.pptxCore Web Vitals.pptx
Core Web Vitals.pptx
 
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
 
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
 
Browser core red bus presentation
Browser core red bus presentation Browser core red bus presentation
Browser core red bus presentation
 
CrUx Report and Improving Web vitals
CrUx Report and Improving Web vitalsCrUx Report and Improving Web vitals
CrUx Report and Improving Web vitals
 
Supercharging Optimizely Performance by Moving Decisions to the Edge
Supercharging Optimizely Performance by Moving Decisions to the EdgeSupercharging Optimizely Performance by Moving Decisions to the Edge
Supercharging Optimizely Performance by Moving Decisions to the Edge
 

Recently uploaded

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdfPearlKirahMaeRagusta1
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...kalichargn70th171
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...software pro Development
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 

Recently uploaded (20)

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 

Core web Vitals: Web Performance and Usability

  • 1. Cologne Web Performance Optimization Meetup #34 Core Web Vitals Optimizing Speed and Usability for Google's Core Web Vitals Thanks to wao.io by Avenga for supporting the event! Ingo Steinke Creative Web Developer
  • 2. Cologne Web Performance Optimization Meetup #34 Ingo Steinke Creative Web Developer, Web Performance Expert, freelancer @ planted.green co-hosting @cgnWebPerf ingo-steinke.com @fraktalisman
  • 3. Cologne Web Performance Optimization Meetup #34 Core Web Vitals Optimizing Speed and Usability for Google's Core Web Vitals Thanks to wao.io by Avenga for supporting the event! Ingo Steinke Creative Web Developer
  • 4. Core Web Vitals: Web Performance and Usability “Web Vitals is an initiative by Google to provide unified guidance for quality signals that are essential to delivering a great user experience on the web. Core Web Vitals are the subset of Web Vitals that apply to all web pages, should be measured by all site owners, and will be surfaced across all Google tools.” web.dev/vitals/#core-web-vitals Cologne Web Performance Optimization Meetup #34
  • 5. Core Web Vitals: Web Performance and Usability What's new anyway? Why the hype? “Most performance advice is the same we already knew, or should have known, unless we never cared about usability and only ever optimized for Time-to-First-Byte?” Cologne Web Performance Optimization Meetup #34
  • 6. Core Web Vitals: Web Performance and Usability LCP: Largest Contentful Paint, FID: First Input Delay, CLS: Cumulative Layout Shift Cologne Web Performance Optimization Meetup #34 TBT Total Blocking Time
  • 7. Core Web Vitals: Web Performance and Usability Measuring and Monitoring Web Vitals ● PageSpeed Insights ● Lighthouse ● WebPageTest ● GTMetrix ● Google Search Console Cologne Web Performance Optimization Meetup #34
  • 8. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 PageSpeed Insights:
  • 9. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 Lighthouse:
  • 10. Core Web Vitals: Web Performance and Usability Measuring Core Web Vitals: WebPageTest Cologne Web Performance Optimization Meetup #34
  • 11. Core Web Vitals: Web Performance and Usability Measuring Core Web Vitals: GTMetrix Cologne Web Performance Optimization Meetup #34
  • 12. Core Web Vitals: Web Performance and Usability Monitoring Core Web Vitals: Google Search Console Cologne Web Performance Optimization Meetup #34
  • 13. Core Web Vitals: Web Performance and Usability LCP: Largest Contentful Paint, FID: First Input Delay, CLS: Cumulative Layout Shift Cologne Web Performance Optimization Meetup #34 TBT Total Blocking Time
  • 14. Core Web Vitals: Web Performance and Usability LCP: Largest Contentful Paint ● What does it measure? ● Why does it matter? ● How to optimize? Cologne Web Performance Optimization Meetup #34
  • 15. Core Web Vitals: Web Performance and Usability Largest Contentful Paint measures interruptions due to waiting Cologne Web Performance Optimization Meetup #34 From the user's point of view, loading a particular page doesn't represent a natural break: they haven’t yet achieved their goal, which may make them less tolerant of delays. The Largest Contentful Paint metric measures when a page-to-page navigation appears complete to a user. Aim to keep LCP under 2.5 seconds for 75% of page loads! blog.chromium.org/2020/05/the-science-behind-web-vitals.html
  • 16. Core Web Vitals: Web Performance and Usability Largest Contentful Paint (LCP) vs. First Contentful Paint (FCP) Cologne Web Performance Optimization Meetup #34 “First Contentful Paint measures how long it takes for initial DOM content to render, but it does not capture how long it took the largest (usually more meaningful) content on the page to render.” (Houssein Djirdeh, Google) web.dev/optimize-lcp/
  • 17. Core Web Vitals: Web Performance and Usability Common Causes for Poor Largest Contentful Paint ● Slow server response times ● Slow resource load times ● Render-blocking JavaScript / CSS ● Client-side rendering Cologne Web Performance Optimization Meetup #34 web.dev/optimize-lcp/
  • 18. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 Slow Server Response Times ➢ optimize server, ➢ cache assets, ➢ use a CDN, ➢ use resource hints: preconnect, dns-prefetch <IfModule mod_expires.c> ExpiresActive on ExpiresDefault "access plus 5 minutes" ExpiresByType image/jpeg "access plus 1 month" <link rel="dns-prefetch" href="https://fonts.gstatic.com/" > <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> smashingmagazine.com/2019/04/optimization-performance-resource-hints/
  • 19. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 <img loading=”lazy” srcset=”a.jpg b.jpg 2x” Slow Resource Load Times ➢ optimize, compress, minify ➢ cache ➢ preload, lazy load ➢ responsive images, adaptive serving navigator.connection.effectiveType // e.g. '4g' navigator.connection.saveData // data-saver setting navigator.hardwareConcurrency // CPU core count navigator.deviceMemory // Device Memory
  • 20. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 Render-Blocking Assets ➢ split, inline, minify, defer .hero-image { background-size: cover; } /* inline critical css */ </style> <link rel=stylesheet media=screen href="styles.css"> <link rel=stylesheet media=print onload="this.media='screen'" href="later.css"> Use the Coverage tab in Chrome DevTools to find “unused CSS” on your web page. Remove any unused CSS, or better move it to another stylesheet if used on another page of your site. Load styles, that are not needed for initial rendering, asynchronously. Tools: loadCSS, Critical, CriticalCSS, Penthouse, Critters (webpack plugin).
  • 21. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 Client-Side Rendering ⚠️ use pre-rendering / server-side rendering (SSR) ? “A server-rendered page may look like it can be interacted with, but it can't respond to any user input until it is “hydrated” (all the client-side JavaScript has executed). This can make Time to Interactive (TTI) worse.” (Houssein Djirdeh, Google)
  • 22. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 FID: First Input Delay ● What does it measure? ● Why does it matter? ● How to optimize?
  • 23. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 First Input Delay (FID) vs. Time To Interactive (TTI) to measure low responsiveness “Time to Interactive measures the time it takes for a page to be fully interactive, when event handlers are registered for most page elements, and user interaction is processed within 50ms. First Input Delay is different in that it’s able to track user input that happens before the page is fully interactive. As a purely real user metric, it cannot be simulated in a lab test. It requires user interaction in order to be measured.” (Ziemek Bućko) onely.com/blog/what-is-first-input-delay/
  • 24. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 web.dev/fid/ Input Delay Optimization ➢ optimize JavaScript code ➢ reduce execution time ➢ minimize main thread work ➢ reduce request count and transfer size ➢ (don't) use asynchronous event handling "would improve the metric but likely make the experience worse" (Philip Walton)
  • 25. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 TBT: Total Blocking Time ● What does it measure? ● Why does it matter? ● How to optimize? TBT Total Blocking Time ?
  • 26. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 Total Blocking Time (TBT) as a replacement for FID TBT Total Blocking Time ? “Total Blocking Time is a Lighthouse Performance metric introduced in 2020 that quantifies your page's load responsiveness to user input. In the simplest terms, TBT measures the total amount of time your webpage was blocked, preventing the user from interacting with your page. It is one of the Web Vitals and is a replacement for the field-only First Input Delay metric.” gtmetrix.com/total-blocking-time.html
  • 27. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 CLS: Cumulative Layout Shift ● What does it measure? ● Why does it matter? ● How to optimize?
  • 28. Core Web Vitals: Web Performance and Usability Cologne Web Performance Optimization Meetup #34 youtube.com/watch?v=AQqFZ5t8uNc Cumulative Layout Shift: “a giant chicken that kicks your content away” (Addy Osmani)
  • 29. Core Web Vitals: Web Performance and Usability Cumulative Layout Shift measures errors from instability Cologne Web Performance Optimization Meetup #34 “If an element suddenly moves, your eyes have to find its new position. Users may end up clicking a link or an ad or a "Buy Now" button unintentionally! Layout shift significantly disrupts the user's intended journey. Cumulative Layout Shift measures how frequent and severe unexpected layout shifts are on a page. Recommended aim for a CLS: less than 0.1 for 75% of page loads.” https://blog.chromium.org/2020/05/the-science-behind-web-vitals.html
  • 30. Core Web Vitals: Web Performance and Usability How to prevent Layout Shift ➢ define image dimensions ➢ reserve fixed height containers for portals / ads / third-party content ➢ use a hero header ➢ use web fonts properly or not at all to prevent flash of invisible /unstyled text (FOIT/FOUT) Cologne Web Performance Optimization Meetup #34 zachleat.com/web/css-tricks-web-fonts/ <img width=”200” height=”200” src=”example.com” alt=”not shifty” />
  • 31. Core Web Vitals: Web Performance and Usability Conclusion What's new anyway? What’s new if you already optimize your page speed? Not much, unless you haven’t cared about usability and user experience as well? Care about your users, optimize time to interactive, and prevent layout shift! My personal prediction: we as developers and designers should also start to care about sustainability and reduce our website’s carbon footprint! Hopefully, this might become another important ranking factor in the future. Cologne Web Performance Optimization Meetup #34
  • 32. Core Web Vitals: Web Performance and Usability Discussion Cologne Web Performance Optimization Meetup #34 ● TBT is the total time of any tasks that take over 50ms. So if you had 3 tasks that take 35ms, 55ms and 80ms the TBT would be 35ms (55-50 and 80 - 50) ● CLS vs. web fonts ○ use variable fonts ○ preload regular font, other (bold, italic) to discover later if needed ○ HTTP Response Header makes browser request it (no server push): link: <https://example.com/regular.woff2>; rel="preload"; as="font"; type="font/woff2"; crossorigin ● image dimensions vs. art direction and older browsers ○ width height must only put the proper ratio ○ use aspect ratio/intrinsic ratio for the image dimension problem ○ aspect ratio attribute, control by media queries, ○ intrinsic ratio trick with padding-bottom for old devices ○ css-tricks.com/aspect-ratio-boxes/
  • 33. Core Web Vitals: Web Performance and Usability Links This presentation is mostly based on other people's work, mainly by Google's Addy Osmani and Houssein Djirdeh, but I also owe to the German WordPress community and many more: Cologne Web Performance Optimization Meetup #34 ➔ wpdus.de/meetup-52/ (German) ➔ https://addyosmani.com/ ➔ twitter.com/hdjirdeh ➔ web.dev/optimize-lcp/ ➔ web.dev/optimize-cls/ ➔ web.dev/http-cache/ ➔ smashingmagazine.com/2019/04/optimization-performance-resource-hints/ ➔ blog.chromium.org/2020/05/the-science-behind-web-vitals.html ➔ developers.google.com/web/fundamentals/performance/get-started/httpcaching-6 ➔ dev.to/ingosteinke/optimizing-speed-and-usability-for-google-s-core-web-vitals-1286 ➔ zachleat.com/web/css-tricks-web-fonts/ ➔ github.com/filamentgroup/loadCSS ➔ github.com/addyosmani/critical ➔ criticalcss.com ➔ github.com/pocketjoso/penthouse ➔ github.com/GoogleChromeLabs/critters
  • 34. Cologne Web Performance Optimization Meetup #35 Save the date: Wednesday, 5 May 2021 at 19:00 CET Online Meetup Thanks to Avenga Germany and wao.io for Support