Skip to content
https://webagencyadvisor.it

Performance

· 22 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
88
GRADE
B
FIX
1
REVIEW
6
PASS
12
INFO
3

Performance-focused optimization plan with CWV assessment, top offenders, and time estimates

98
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
82
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
92
Best Practices Checks for modern web development best practices including HTTPS, no console errors, and secure JavaScript.
92
SEO Measures basic SEO optimizations: meta tags, crawlability, link text, and mobile friendliness.

First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.

922 ms

Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.

922 ms

Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.

0 ms

Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.

0.001

Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.

992 ms

Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.

922 ms

Page Load Progression

375 ms
750 ms
1.1 s
1.5 s
1.9 s
2.2 s
2.6 s
3.0 s
Checks
22
12 PASS 6 REVIEW 1 FIX
F
HTTP Caching
Action
No cache headers
FIX
No cache headers
Warning::
No Cache-Control header found
Browsers will use heuristic caching, which can be unpredictable. Set explicit cache headers.

No Cache-Control header

Adding a Cache-Control header can significantly improve repeat-visit performance.

B
Image Optimization
24 images, 0 KB saveable
REVIEW
24 images, 0 KB saveable
Warning::
https://webagencyadvisor.it/wp-content/uploads/202... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
https://webagencyadvisor.it/wp-content/uploads/202... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
https://webagencyadvisor.it/wp-content/uploads/202... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
24 images 472 KB
0 oversized -0 KB
3 legacy format
3 missing dimensions CLS risk

Set explicit width and height to prevent CLS.

Why this matters

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.

Why this matters

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.

Why this matters

Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.

Source: web.dev / Core Web Vitals

C
JS Bundles
Action
9 scripts, 155 KB unused
REVIEW
9 scripts, 155 KB unused
Warning::
https://www.googletagmanager.com/gtag/js?id=G-YM39...: 69 KB unused (45%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://www.googletagmanager.com/gtm.js?id=GTM-5C8...: 64 KB unused (54%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://webagencyadvisor.it/wp-includes/js/jquery/...: 21 KB unused (73%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 155 KB
155 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://www.googletagmanager.com/gtag/js?id=G-YM391SJYGS&cx=c&gtm=4e6781156 KB69 KB (45%)3rd
https://www.googletagmanager.com/gtm.js?id=GTM-5C8G2DV120 KB64 KB (54%)3rd
https://webagencyadvisor.it/wp-includes/js/jquery/jquery.min.js?ver=3.7.129 KB21 KB (73%)1st
https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide.min.js?ver=4.0.1412 KB1st
https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide-extension-auto-scroll.min.js?ver=0.5.22 KB1st
https://webagencyadvisor.it/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d2 KB1st
https://webagencyadvisor.it/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec2 KB1st
https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.63 KB1st
https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.64 KB1st

Consider code splitting or tree shaking to reduce unused code.

Why this matters

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.

Why this matters

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.

Why this matters

This bundle has high unused code — code-split or tree-shake to ship only what executes.

Source: web.dev / Lighthouse coverage

B
Compression Algorithm
Main response uses gzip; brotli would be ~20% smaller
REVIEW
Main response uses gzip; brotli would be ~20% smaller
Info::
Main HTML response uses gzip (brotli would be ~20% smaller)
All current browsers support brotli. Most CDNs (Cloudflare, Fastly, AWS CloudFront, Vercel, Netlify) can switch from gzip to brotli with a single config flag. Origin servers (nginx, Apache) need a brotli module compiled in -- nginx-brotli or Apache mod_brotli.
B
Main HTML Cache-Control
No Cache-Control header on main HTML response
REVIEW
No Cache-Control header on main HTML response
Info::
Main HTML response has no Cache-Control header
Without an explicit Cache-Control, browsers fall back to heuristic caching (~10% of Last-Modified age). Set `Cache-Control: no-cache` or `max-age=300` for HTML to control freshness explicitly -- prevents stale auth state and SPA shell drift.
B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
No Server-Timing header found
Server-Timing exposes backend timing breakdowns to browser DevTools (e.g., `db: 45ms; render: 120ms; cache: 2ms`). Useful for diagnosing slow pages without backend log access. Most modern frameworks (Next.js, Cloudflare Workers, Fastly) emit it automatically; absence on a managed platform usually means telemetry headers are stripped at the edge.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

A
Page Weight Budget
908 KB transferred, 46 requests
PASS
908 KB transferred, 46 requests
Info::
Page weighs 1.8 MB (908 KB transferred)
Info::
46 HTTP requests
Info::
Estimated 0.19 g CO2 per page load
908 KB / 2.4 MB budget
908 KB transferred
46 requests
0.19 g CO2 per page load
Images 472.0 KiB 52%
JavaScript 330.1 KiB 36%
Fonts 47.3 KiB 5%
CSS 24.2 KiB 3%
HTML 20.6 KiB 2%
Other 13.1 KiB 1%
Other 552 B 0%
0 2.4 MB 4.9 MB
Under budget
A
Third-Party Impact
36% third-party, 0 ms blocking
PASS
36% third-party, 0 ms blocking
Info::
Third-party code accounts for 36% of page weight (324.3 KiB of 908.0 KiB)
Info::
Third-party blocking time is low (0 ms)
64%
36%
First-party Third-party
A+
Text Compression
All text resources are compressed
PASS
All text resources are compressed
Info::
All text resources are compressed
All text resources are properly compressed.
A+
JS Execution Cost
258ms total JS execution
PASS
258ms total JS execution
Info::
https://webagencyadvisor.it/: 105ms CPU time
Info::
Unattributable: 101ms CPU time
Info::
https://www.googletagmanager.com/gtag/js?id=G-YM39...: 51ms CPU time
Info::
Third-party scripts: 51ms (20% of total)

Main Thread Breakdown

Script Evaluation 32% Other 27% Style & Layout 24% Script Parsing & Compilation 8% Parse HTML & CSS 5% Rendering 3%
ScriptTotalScriptingParse/CompileParty
https://webagencyadvisor.it/105ms2ms1ms1st
Unattributable101ms18ms0ms1st
https://www.googletagmanager.com/gtag/js?id=G-YM391SJYGS&cx=c&gtm=4e678151ms40ms11ms3rd
A+
Font Loading
1 fonts (47 KB)
PASS
1 fonts (47 KB)
Info::
1 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

1

47 KB total

Render-blocking

0

of 1

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 500 ms 1.0 s FCP 922 ms LCP 922 mshttps://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2UcC73FwrK3iLTeHuS_nVMrM... https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2 — 47.3 KiB — 391 ms — font-display: swap
UcC73FwrK3iLTeHuS_nVMrM... woff2 swap
Size 47 KB
Load time 391 ms
Start 819 ms
Risk FOUT — text flashes from fallback to web font
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)
A+
Resource Caching
All resources properly cached
PASS
All resources properly cached
Info::
No caching issues found
All static resources have appropriate caching headers.
A+
Critical Rendering Path
No render-blocking resources
PASS
No render-blocking resources
Info::
No render-blocking resources detected
A+
Resource Hints
No optimization needed
PASS
No optimization needed
Info::
No resource hint issues
A+
HTTP/3 (QUIC)
HTTP/3 advertised via Alt-Svc
PASS
HTTP/3 advertised via Alt-Svc
Info::
HTTP/3 (QUIC) is supported
First-load mobile users on cellular networks see meaningful latency improvements with HTTP/3. The QUIC transport collapses TLS + TCP handshakes into one and recovers faster from packet loss.
A+
LCP Image Preload
LCP preload audit not available
PASS
LCP preload audit not available
Info::
LCP image preload audit not available for this scan
A+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
`Vary` header declared: Accept-Encoding
The page declares a `Vary` header, telling downstream caches which request headers the response varies on. Critical for content-negotiated responses (compression, language, cookies, device class).
Info::
No `ETag` or `Last-Modified` -- conditional GET not supported
Without either header, browsers can't issue conditional GETs and refresh always re-downloads the full response body even when nothing changed. Add `ETag: "<hash>"` (or `Last-Modified: <date>`) on cacheable responses; the server returns 304 Not Modified when the client's cached copy is still valid, saving bandwidth.
A+
Page Weight Inventory
46 resources · 908 KB · 155 KB savings available
PASS
46 resources · 908 KB · 155 KB savings available
Info::
Within 1MB page-weight target
Got: 908 KB
Info::
~155 KB of savings available
Info::
5 third-party resources (36% of weight)
46 resources · 908.0 KiB · 5 third-party Within 1MB page-weight target
Image 52% · 473.1 KiB
JavaScript 36% · 330.1 KiB
Font 5% · 47.3 KiB
Document 4% · 32.7 KiB
CSS 3% · 24.2 KiB
Other 0% · 552 B

~154.6 KiB of savings available

Remove unused JavaScript: 154.6 KiB
Network Waterfall
46 requests over 2436ms
INFO
0 ms 500 ms 1.0 s 1.5 s 2.0 s 2.5 s FCP 922 ms LCP 922 mshttps://webagencyadvisor.it// https://webagencyadvisor.it/ — 200 — 20.6 KiB — 122 ms — h2https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900|Inter:100,200,300,400,500,600,700,800,900fonts.googleapis.com/css?family=Int... https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900|Inter:100,200,300,400,500,600,700,800,900 — 200 — 1.4 KiB — 606 ms — h2https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6/wp-content/plugins/contact-form-7/... https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6 — 200 — 1.0 KiB — 39 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxygen/component-framework/oxygen.css?ver=4.9.7/wp-content/plugins/oxygen/componen... https://webagencyadvisor.it/wp-content/plugins/oxygen/component-framework/oxygen.css?ver=4.9.7 — 200 — 4.1 KiB — 39 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/core-sss.min.css?ver=3.5.3/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/core-sss.min.css?ver=3.5.3 — 200 — 1.1 KiB — 40 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/splide.min.css?ver=4.0.14/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/splide.min.css?ver=4.0.14 — 200 — 1.2 KiB — 41 ms — h2https://webagencyadvisor.it/wp-includes/js/jquery/jquery.min.js?ver=3.7.1/wp-includes/js/jquery/jquery.min.j... https://webagencyadvisor.it/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 — 200 — 29.0 KiB — 72 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide.min.js?ver=4.0.14/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide.min.js?ver=4.0.14 — 200 — 12.2 KiB — 67 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide-extension-auto-scroll.min.js?ver=0.5.2/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide-extension-auto-scroll.min.js?ver=0.5.2 — 200 — 2.3 KiB — 68 ms — h2https://webagencyadvisor.it/wp-content/uploads/oxygen/css/210.css?cache=1661643269&ver=7.0.1/wp-content/uploads/oxygen/css/210.... https://webagencyadvisor.it/wp-content/uploads/oxygen/css/210.css?cache=1661643269&ver=7.0.1 — 200 — 576 B — 41 ms — h2https://webagencyadvisor.it/wp-content/uploads/oxygen/css/38.css?cache=1695247454&ver=7.0.1/wp-content/uploads/oxygen/css/38.c... https://webagencyadvisor.it/wp-content/uploads/oxygen/css/38.css?cache=1695247454&ver=7.0.1 — 200 — 1.5 KiB — 42 ms — h2https://webagencyadvisor.it/wp-content/uploads/oxygen/css/universal.css?cache=1695247454&ver=7.0.1/wp-content/uploads/oxygen/css/univ... https://webagencyadvisor.it/wp-content/uploads/oxygen/css/universal.css?cache=1695247454&ver=7.0.1 — 200 — 13.4 KiB — 44 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/07/webagencyadvisor-logo.svg/wp-content/uploads/2022/07/webagen... https://webagencyadvisor.it/wp-content/uploads/2022/07/webagencyadvisor-logo.svg — 200 — 3.5 KiB — 69 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/07/digital-marketing-agency-advertising.webp/wp-content/uploads/2022/07/digital... https://webagencyadvisor.it/wp-content/uploads/2022/07/digital-marketing-agency-advertising.webp — 200 — 12.7 KiB — 69 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/webhero-agency-feature.webp/wp-content/uploads/2022/06/webhero... https://webagencyadvisor.it/wp-content/uploads/2022/06/webhero-agency-feature.webp — 200 — 7.9 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/web-marketing-skill.webp/wp-content/uploads/2022/05/web-mar... https://webagencyadvisor.it/wp-content/uploads/2022/05/web-marketing-skill.webp — 200 — 2.0 KiB — 32 ms — h2https://webagencyadvisor.it/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d/wp-includes/js/dist/hooks.min.js?v... https://webagencyadvisor.it/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d — 200 — 1.8 KiB — 35 ms — h2https://webagencyadvisor.it/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec/wp-includes/js/dist/i18n.min.js?ve... https://webagencyadvisor.it/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec — 200 — 2.4 KiB — 33 ms — h2https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6/wp-content/plugins/contact-form-7/... https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6 — 200 — 3.3 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6/wp-content/plugins/contact-form-7/... https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6 — 200 — 4.0 KiB — 33 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/baseagency-featured-1024x523.webp/wp-content/uploads/2022/05/baseage... https://webagencyadvisor.it/wp-content/uploads/2022/05/baseagency-featured-1024x523.webp — 200 — 5.2 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/awd-agency-web-fermo.webp/wp-content/uploads/2022/06/awd-age... https://webagencyadvisor.it/wp-content/uploads/2022/06/awd-agency-web-fermo.webp — 200 — 20.7 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/riot-design-agenzia-web-empoli.webp/wp-content/uploads/2022/06/riot-de... https://webagencyadvisor.it/wp-content/uploads/2022/06/riot-design-agenzia-web-empoli.webp — 200 — 15.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/seocube-agenzia-napoli.webp/wp-content/uploads/2022/06/seocube... https://webagencyadvisor.it/wp-content/uploads/2022/06/seocube-agenzia-napoli.webp — 200 — 19.3 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/adoratorio-studio-agenzia-brescia.webp/wp-content/uploads/2022/06/adorato... https://webagencyadvisor.it/wp-content/uploads/2022/06/adoratorio-studio-agenzia-brescia.webp — 200 — 15.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/websolute-agenzia-pesaro.webp/wp-content/uploads/2022/06/websolu... https://webagencyadvisor.it/wp-content/uploads/2022/06/websolute-agenzia-pesaro.webp — 200 — 19.2 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/basilico-agenzia-brescia.webp/wp-content/uploads/2022/06/basilic... https://webagencyadvisor.it/wp-content/uploads/2022/06/basilico-agenzia-brescia.webp — 200 — 13.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2023/09/aquest-agenzia-verona.webp/wp-content/uploads/2023/09/aquest-... https://webagencyadvisor.it/wp-content/uploads/2023/09/aquest-agenzia-verona.webp — 200 — 9.2 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/loop-agency-featured.webp/wp-content/uploads/2022/05/loop-ag... https://webagencyadvisor.it/wp-content/uploads/2022/05/loop-agency-featured.webp — 200 — 21.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/secretkey-agency-featured.webp/wp-content/uploads/2022/05/secretk... https://webagencyadvisor.it/wp-content/uploads/2022/05/secretkey-agency-featured.webp — 200 — 23.6 KiB — 32 ms — h2
0 ms 500 ms 1.0 s 1.5 s 2.0 s 2.5 s FCP 922 ms LCP 922 mshttps://webagencyadvisor.it// https://webagencyadvisor.it/ — 200 — 20.6 KiB — 122 ms — h2https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900|Inter:100,200,300,400,500,600,700,800,900fonts.googleapis.com/css?family=Int... https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900|Inter:100,200,300,400,500,600,700,800,900 — 200 — 1.4 KiB — 606 ms — h2https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6/wp-content/plugins/contact-form-7/... https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6 — 200 — 1.0 KiB — 39 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxygen/component-framework/oxygen.css?ver=4.9.7/wp-content/plugins/oxygen/componen... https://webagencyadvisor.it/wp-content/plugins/oxygen/component-framework/oxygen.css?ver=4.9.7 — 200 — 4.1 KiB — 39 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/core-sss.min.css?ver=3.5.3/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/core-sss.min.css?ver=3.5.3 — 200 — 1.1 KiB — 40 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/splide.min.css?ver=4.0.14/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/css/splide.min.css?ver=4.0.14 — 200 — 1.2 KiB — 41 ms — h2https://webagencyadvisor.it/wp-includes/js/jquery/jquery.min.js?ver=3.7.1/wp-includes/js/jquery/jquery.min.j... https://webagencyadvisor.it/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 — 200 — 29.0 KiB — 72 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide.min.js?ver=4.0.14/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide.min.js?ver=4.0.14 — 200 — 12.2 KiB — 67 ms — h2https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide-extension-auto-scroll.min.js?ver=0.5.2/wp-content/plugins/oxy-ninjax/publ... https://webagencyadvisor.it/wp-content/plugins/oxy-ninjax/public/js/splide/splide-extension-auto-scroll.min.js?ver=0.5.2 — 200 — 2.3 KiB — 68 ms — h2https://webagencyadvisor.it/wp-content/uploads/oxygen/css/210.css?cache=1661643269&ver=7.0.1/wp-content/uploads/oxygen/css/210.... https://webagencyadvisor.it/wp-content/uploads/oxygen/css/210.css?cache=1661643269&ver=7.0.1 — 200 — 576 B — 41 ms — h2https://webagencyadvisor.it/wp-content/uploads/oxygen/css/38.css?cache=1695247454&ver=7.0.1/wp-content/uploads/oxygen/css/38.c... https://webagencyadvisor.it/wp-content/uploads/oxygen/css/38.css?cache=1695247454&ver=7.0.1 — 200 — 1.5 KiB — 42 ms — h2https://webagencyadvisor.it/wp-content/uploads/oxygen/css/universal.css?cache=1695247454&ver=7.0.1/wp-content/uploads/oxygen/css/univ... https://webagencyadvisor.it/wp-content/uploads/oxygen/css/universal.css?cache=1695247454&ver=7.0.1 — 200 — 13.4 KiB — 44 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/07/webagencyadvisor-logo.svg/wp-content/uploads/2022/07/webagen... https://webagencyadvisor.it/wp-content/uploads/2022/07/webagencyadvisor-logo.svg — 200 — 3.5 KiB — 69 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/07/digital-marketing-agency-advertising.webp/wp-content/uploads/2022/07/digital... https://webagencyadvisor.it/wp-content/uploads/2022/07/digital-marketing-agency-advertising.webp — 200 — 12.7 KiB — 69 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/webhero-agency-feature.webp/wp-content/uploads/2022/06/webhero... https://webagencyadvisor.it/wp-content/uploads/2022/06/webhero-agency-feature.webp — 200 — 7.9 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/web-marketing-skill.webp/wp-content/uploads/2022/05/web-mar... https://webagencyadvisor.it/wp-content/uploads/2022/05/web-marketing-skill.webp — 200 — 2.0 KiB — 32 ms — h2https://webagencyadvisor.it/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d/wp-includes/js/dist/hooks.min.js?v... https://webagencyadvisor.it/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d — 200 — 1.8 KiB — 35 ms — h2https://webagencyadvisor.it/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec/wp-includes/js/dist/i18n.min.js?ve... https://webagencyadvisor.it/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec — 200 — 2.4 KiB — 33 ms — h2https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6/wp-content/plugins/contact-form-7/... https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6 — 200 — 3.3 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6/wp-content/plugins/contact-form-7/... https://webagencyadvisor.it/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6 — 200 — 4.0 KiB — 33 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/baseagency-featured-1024x523.webp/wp-content/uploads/2022/05/baseage... https://webagencyadvisor.it/wp-content/uploads/2022/05/baseagency-featured-1024x523.webp — 200 — 5.2 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/awd-agency-web-fermo.webp/wp-content/uploads/2022/06/awd-age... https://webagencyadvisor.it/wp-content/uploads/2022/06/awd-agency-web-fermo.webp — 200 — 20.7 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/riot-design-agenzia-web-empoli.webp/wp-content/uploads/2022/06/riot-de... https://webagencyadvisor.it/wp-content/uploads/2022/06/riot-design-agenzia-web-empoli.webp — 200 — 15.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/seocube-agenzia-napoli.webp/wp-content/uploads/2022/06/seocube... https://webagencyadvisor.it/wp-content/uploads/2022/06/seocube-agenzia-napoli.webp — 200 — 19.3 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/adoratorio-studio-agenzia-brescia.webp/wp-content/uploads/2022/06/adorato... https://webagencyadvisor.it/wp-content/uploads/2022/06/adoratorio-studio-agenzia-brescia.webp — 200 — 15.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/websolute-agenzia-pesaro.webp/wp-content/uploads/2022/06/websolu... https://webagencyadvisor.it/wp-content/uploads/2022/06/websolute-agenzia-pesaro.webp — 200 — 19.2 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/basilico-agenzia-brescia.webp/wp-content/uploads/2022/06/basilic... https://webagencyadvisor.it/wp-content/uploads/2022/06/basilico-agenzia-brescia.webp — 200 — 13.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2023/09/aquest-agenzia-verona.webp/wp-content/uploads/2023/09/aquest-... https://webagencyadvisor.it/wp-content/uploads/2023/09/aquest-agenzia-verona.webp — 200 — 9.2 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/loop-agency-featured.webp/wp-content/uploads/2022/05/loop-ag... https://webagencyadvisor.it/wp-content/uploads/2022/05/loop-agency-featured.webp — 200 — 21.1 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/secretkey-agency-featured.webp/wp-content/uploads/2022/05/secretk... https://webagencyadvisor.it/wp-content/uploads/2022/05/secretkey-agency-featured.webp — 200 — 23.6 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/bake-agency-featured.webp/wp-content/uploads/2022/05/bake-ag... https://webagencyadvisor.it/wp-content/uploads/2022/05/bake-agency-featured.webp — 200 — 7.0 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/therope-agency-featured.webp/wp-content/uploads/2022/05/therope... https://webagencyadvisor.it/wp-content/uploads/2022/05/therope-agency-featured.webp — 200 — 13.6 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/kirweb-agenzia-featured.webp/wp-content/uploads/2022/06/kirweb-... https://webagencyadvisor.it/wp-content/uploads/2022/06/kirweb-agenzia-featured.webp — 200 — 33.0 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/akida-movinbrand-featured.webp/wp-content/uploads/2022/05/akida-m... https://webagencyadvisor.it/wp-content/uploads/2022/05/akida-movinbrand-featured.webp — 200 — 12.7 KiB — 33 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/studiocappello-agency-featured-1024x512.jpg/wp-content/uploads/2022/05/studioc... https://webagencyadvisor.it/wp-content/uploads/2022/05/studiocappello-agency-featured-1024x512.jpg — 200 — 60.0 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/studiosamo-agency-featured.webp/wp-content/uploads/2022/05/studios... https://webagencyadvisor.it/wp-content/uploads/2022/05/studiosamo-agency-featured.webp — 200 — 22.6 KiB — 32 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/cantiere-creativo-featured.jpg/wp-content/uploads/2022/05/cantier... https://webagencyadvisor.it/wp-content/uploads/2022/05/cantiere-creativo-featured.jpg — 200 — 27.2 KiB — 44 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/webagencyadvisor-logo-wh.webp/wp-content/uploads/2022/05/webagen... https://webagencyadvisor.it/wp-content/uploads/2022/05/webagencyadvisor-logo-wh.webp — 200 — 6.5 KiB — 45 ms — h2https://www.googletagmanager.com/gtm.js?id=GTM-5C8G2DVwww.googletagmanager.com/gtm.js?id=... https://www.googletagmanager.com/gtm.js?id=GTM-5C8G2DV — 200 — 119.5 KiB — 918 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/migliori-web-agency-italia.webp/wp-content/uploads/2022/05/miglior... https://webagencyadvisor.it/wp-content/uploads/2022/05/migliori-web-agency-italia.webp — 200 — 99.9 KiB — 54 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/05/citazione-logo.webp/wp-content/uploads/2022/05/citazio... https://webagencyadvisor.it/wp-content/uploads/2022/05/citazione-logo.webp — 200 — 1.4 KiB — 53 ms — h2https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2fonts.gstatic.com/s/inter/v20/UcC73... https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2 — 200 — 47.3 KiB — 391 ms — h3https://www.googletagmanager.com/gtag/js?id=G-YM391SJYGS&cx=c&gtm=4e6781www.googletagmanager.com/gtag/js?id... https://www.googletagmanager.com/gtag/js?id=G-YM391SJYGS&cx=c&gtm=4e6781 — 200 — 155.5 KiB — 570 ms — h2https://region1.google-analytics.com/g/collect?v=2&tid=G-YM391SJYGS&gtm=45je6781v884337446z8866239238za20gzb866239238zd866239238&_p=1783683058039&gcd=13l3l3l2l1l1&npa=1&dma_cps=a&dma=1&are=1&cid=1658280503.1783683060&frm=0&pscdl=noapi&rcb=4&sr=800x600&uaa=x86&uab=64&uafvl=Not%253BA%253DBrand%3B8.0.0.0%7CChromium%3B150.0.7871.100&uam=&uamb=0&uap=macOS&uapv=10.15.7&uaw=0&ul=en-us&_s=1&tag_exp=115938466~115938469~118826209~118897920~118897930~119027224&sid=1783683059&sct=1&seg=0&dl=https%3A%2F%2Fwebagencyadvisor.it%2F&dt=Le%20Migliori%20Web%20Agency%20Italiane%20%7C%20Web%20Agency%20Advisor&en=page_view&_fv=1&_nsi=1&_ss=1&tfd=2356region1.google-analytics.com/g/coll... https://region1.google-analytics.com/g/collect?v=2&tid=G-YM391SJYGS&gtm=45je6781v884337446z8866239238za20gzb866239238zd866239238&_p=1783683058039&gcd=13l3l3l2l1l1&npa=1&dma_cps=a&dma=1&are=1&cid=1658280503.1783683060&frm=0&pscdl=noapi&rcb=4&sr=800x600&uaa=x86&uab=64&uafvl=Not%253BA%253DBrand%3B8.0.0.0%7CChromium%3B150.0.7871.100&uam=&uamb=0&uap=macOS&uapv=10.15.7&uaw=0&ul=en-us&_s=1&tag_exp=115938466~115938469~118826209~118897920~118897930~119027224&sid=1783683059&sct=1&seg=0&dl=https%3A%2F%2Fwebagencyadvisor.it%2F&dt=Le%20Migliori%20Web%20Agency%20Italiane%20%7C%20Web%20Agency%20Advisor&en=page_view&_fv=1&_nsi=1&_ss=1&tfd=2356 — 204 — 552 B — 69 ms — h2https://webagencyadvisor.it/favicon.png/favicon.png https://webagencyadvisor.it/favicon.png — 404 — 12.0 KiB — 33 ms — h2https://webagencyadvisor.it/wp-content/uploads/2022/06/cropped-favicon-32x32.png/wp-content/uploads/2022/06/cropped... https://webagencyadvisor.it/wp-content/uploads/2022/06/cropped-favicon-32x32.png — 200 — 1.1 KiB — 31 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
20% of JavaScript execution is third-party
First-party Third-party 51ms · 156KB · €1/mo
Google Tag Manager
Tag Manager
Optional
Execution 51ms
Transfer 156 KB
Unused 45%
Monthly Cost €1/mo

How third-party costs are calculated

Image Optimization
46 images, 430 KB total, 265 KB wasted
INFO

Image Optimization Audit

Total Images

46

Total Size

430 KB

Oversized

19

Wasted

265 KB

46 missing dimensions 45 missing lazy loading
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback