Performance
· 17 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
10.45 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
18.83 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.15 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.002
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
14.95 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
20.11 s
Page Load Progression
DPage Weight BudgetAction2.3 MB transferred, 106 requestsFIX
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
Subset fonts to include only used characters, or switch to system font stacks.
Font payload is large — subset to used glyphs only, or fall back to system fonts (zero load time).
Source: web.dev font loading
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.
Source: web.dev
DThird-Party ImpactAction100% third-party, 0 ms blockingFIX
FJS Execution CostAction4277ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://script.hotjar.com/modules.6a0f3932cb1341a35c18.js | 965ms | 855ms | 31ms | 3rd |
| https://www.itu.int/en/Pages/default.aspx | 679ms | 51ms | 22ms | 3rd |
| Unattributable | 547ms | 13ms | 0ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-T69008QZXS&cx=c>m=4e64h1 | 416ms | 348ms | 63ms | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-M2LC5X5 | 286ms | 227ms | 56ms | 3rd |
| https://www.itu.int/_layouts/15/init.js?rev=TzY%2Fm%2FOoPnHW9OQ41OjrYQ%3D%3DTAG0 | 247ms | 108ms | 40ms | 3rd |
| https://www.itu.int/js/jquery-1.6.4.min.js | 243ms | 125ms | 12ms | 3rd |
| https://script.hotjar.com/survey-v2.8b9993fd273bc1f4ea37.js | 201ms | 132ms | 31ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=UA-121074739-1 | 182ms | 136ms | 45ms | 3rd |
| https://cse.google.com/cse.js?cx=603416e14d8fe4ef6 | 153ms | 113ms | 2ms | 3rd |
Showing top 10 of 14 scripts
FJS BundlesAction32 scripts, 751 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.itu.int/js/jquery-ui-1.8.16.min.js | 198 KB | 179 KB (91%) | ✓ | 3rd |
| https://www.itu.int/_layouts/15/core.js?rev=ZDqG1yirPiaXxf0KNWhHeQ%3D%3DTAG0 | 130 KB | 118 KB (91%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-M2LC5X5 | 143 KB | 65 KB (46%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-T69008QZXS&cx=c>m=4e64h1 | 161 KB | 65 KB (40%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=UA-121074739-1 | 116 KB | 64 KB (55%) | ✓ | 3rd |
| https://www.itu.int/_layouts/15/init.js?rev=TzY%2Fm%2FOoPnHW9OQ41OjrYQ%3D%3DTAG0 | 83 KB | 57 KB (69%) | ✓ | 3rd |
| https://www.google.com/cse/static/element/dc329f57de078f5d/cse_element__en.js?usqp=CAM%3D | 103 KB | 52 KB (50%) | ✓ | 3rd |
| https://www.itu.int/js/jquery-1.6.4.min.js | 91 KB | 47 KB (52%) | ✓ | 3rd |
| https://www.itu.int/js/itu-functions.js | 69 KB | 32 KB (46%) | ✗ | 3rd |
| https://cse.google.com/adsense/search/async-ads.js | 44 KB | 32 KB (73%) | ✓ | 3rd |
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
FPage Weight InventoryAction106 resources · 2.3 MB · 751 KB savings availableFIX
~751.1 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 106 resources | 2.3 MiB | ||||||
FHTTP CachingActionNo cache headersFIX
No Cache-Control header
Adding a Cache-Control header can significantly improve repeat-visit performance.
CImage OptimizationAction44 images, 0 KB saveableREVIEW
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+Font Loading4 fonts (227 KB)PASS
Web fonts
4
227 KB total
Render-blocking
0
of 4
Dominant font-display
swap
Most common across fonts
Font loading timeline
- Convert to woff2 for ~30% smaller file size
- Convert to woff2 for ~30% smaller file size
Optimization checklist
- Preload critical fonts (priority=high)
- Use woff2 format for all fonts
- Set font-display to swap, optional, or fallback
- Subset large fonts (≤100 KB each)
Fixing the unchecked items could save ~38 KB and ~76 ms
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
Network Waterfall106 requests over 9677msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Hotjar script.hotjar.com | Session Replay | 965ms | 57 KB | 38% | $13/mo | Costly |
www.itu.int www.itu.int | Other | 679ms | 35 KB | — | $9/mo | Costly |
Unattributable Unattributable | Other | 547ms | 0 KB | — | $7/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 416ms | 161 KB | 40% | $6/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 286ms | 143 KB | 46% | $4/mo | Costly |
www.itu.int www.itu.int | Other | 247ms | 83 KB | 69% | $3/mo | Costly |
www.itu.int www.itu.int | Other | 243ms | 91 KB | 52% | $3/mo | Costly |
Hotjar script.hotjar.com | Session Replay | 201ms | 63 KB | 33% | $3/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 182ms | 116 KB | 55% | $2/mo | Optional |
cse.google.com cse.google.com | Other | 153ms | 4 KB | — | $2/mo | Optional |
www.itu.int www.itu.int | Other | 121ms | 130 KB | 91% | $2/mo | Optional |
Google Analytics www.google-analytics.com | Analytics | 105ms | 21 KB | — | $1/mo | Optional |
www.google.com www.google.com | Other | 78ms | 103 KB | 50% | $1/mo | Optional |
cse.google.com cse.google.com | Other | 54ms | 44 KB | 73% | $1/mo | Optional |
These scripts may cost more than they're worth
- Hotjar adds 965ms and costs ~$13/month
- www.itu.int adds 679ms and costs ~$9/month
- Unattributable adds 547ms and costs ~$7/month
- Google Tag Manager adds 416ms and costs ~$6/month
- Google Tag Manager adds 286ms and costs ~$4/month
- www.itu.int adds 247ms and costs ~$3/month
- www.itu.int adds 243ms and costs ~$3/month
- Hotjar adds 201ms and costs ~$3/month
100% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
When third-party JS execution time exceeds your own, performance gains from frontend work are capped by code you don't own.
Learn more ▾ ▴
Every millisecond of third-party JS competes with your own for main-thread time. If their share is bigger than yours, optimization on your code base barely moves the needle. Audit, defer, or remove third-parties before further frontend optimization. Use Lighthouse's third-party audit to identify the worst offenders.
Source: web.dev
Hotjar takes 965ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
www.itu.int takes 679ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Unattributable takes 547ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 416ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 286ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
www.itu.int takes 247ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
69% of www.itu.int's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
www.itu.int takes 243ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
52% of www.itu.int's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
Hotjar takes 201ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
55% of Google Tag Manager's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
91% of www.itu.int's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
50% of www.google.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
73% of cse.google.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev