Run 2 summary

https://a2design.es

Tested 2026-03-11 10:52:06 using Chrome 144.0.7559.59 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayThird partyScreenshots

Summary

MetricValue
Page metrics
Performance score73
Total page size1.3 MB
Requests64
Timing metrics
TTFB145 ms
First Paint564 ms
Fully Loaded899 ms
Google Web Vitals
TTFB145 ms
First Contentful Paint (FCP) 564 ms
Largest Contentful Paint (LCP) 708 ms
Cumulative Layout Shift (CLS) 0.01
104 ms
CPU metrics
CPU long tasks1
CPU last long task happens at405 ms
Visual Metrics
First Visual Change567 ms
Speed Index950 ms
Visual Complete 85%900 ms
Visual Complete 99%6.867 s
Last Visual Change6.867 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.5 sCPU Long Task duration 122 ms
0.6 sFirst Contentful Paint 564 msFirst Visual Change 567 ms
0.7 sLayout Shift 0.01151 632 msDOM Content Loaded Time 685 msPage Load Time 687 ms
0.8 sLCP <DIV> 708 ms
0.9 sFully Loaded 899 msVisual Complete 85% 900 msVisual Complete 95% 900 ms
1 s
1.1 s
1.2 s
1.3 s
1.4 s
1.5 s
1.6 s
1.7 s
1.8 s
1.9 s
2 s
2.1 s
2.2 s
2.3 s
2.4 s
2.5 s
2.6 s
2.7 s
2.8 s
2.9 s
3 s
3.1 s
3.2 s
3.3 s
3.4 s
3.5 s
3.6 s
3.7 s
3.8 s
3.9 s
4 s
4.1 s
4.2 s
4.3 s
4.4 s
4.5 s
4.6 s
4.7 s
4.8 s
4.9 s
5 s
5.1 s
5.2 s
5.3 s
5.4 s
5.5 s
5.6 s
5.7 s
5.8 s
5.9 s
6 s
6.1 s
6.2 s
6.3 s
6.4 s
6.5 s
6.6 s
6.7 s
6.8 s
6.9 sLast Visual Change 6.867 sVisual Complete 99% 6.867 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.3.

I am the coach

Coach score

Performance advice (73)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 5 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.50
Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
Offenders:
  • https://a2design.es/wp-content/uploads/2025/05/A2-Design.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11-772x1024.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-75-1024x683.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45-1024x774.webp
  • https://a2design.es/wp-content/uploads/2025/10/logo-gris-grafito@4x-1.webp
  • Inline CSS for faster first render (inlineCss)The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.95
    Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
    Avoid CPU Long Tasks (longTasks)The page has 1 CPU long task with the total of 122 ms. The total blocking time is 0 ms and 1 long task before first contentful paint with total time of 122 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.80
    Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.
    Offenders:
  • unknown
  • Avoid Frontend single point of failures (spof)The page has 5 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.90
    Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.
    Offenders:
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 19 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 149.4 kB the next access.0
    Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
    Offenders:
  • https://a2design.es/wp-includes/js/jquery/jquery.min.js
  • https://a2design.es/wp-includes/js/jquery/jquery-migrate.min.js
  • https://a2design.es/wp-content/themes/hello-elementor/assets/js/hello-frontend.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/frontend-modules.min.js
  • https://a2design.es/wp-includes/js/jquery/ui/core.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/frontend.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js
  • https://a2design.es/wp-includes/js/dist/hooks.min.js
  • https://a2design.es/wp-includes/js/dist/i18n.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/frontend.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/shared-frontend-handl...b67.bundle.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nav-menu.8521a059...dc6.bundle.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/text-editor.45609661e...cef.bundle.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nested-carousel.d...f4a.bundle.min.js
  • https://a2design.es/wp-includes/js/wp-emoji-release.min.js
  • Long cache headers is good (cacheHeadersLong)The page has 39 requests that have a shorter cache time than 30 days (but still a cache time).61
    Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
    Offenders:
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/reset.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/theme.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/header-footer.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/frontend.min.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-8.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-image.min.css
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-heading.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-divider.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/css/widget-nested-carousel.min.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-268.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-272.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-276.css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://a2design.es/wp-content/uploads/2025/05/A2-Design.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11-772x1024.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-75-1024x683.webp
  • https://a2design.es/wp-content/uploads/2025/10/logo-gris-grafito@4x-1.webp
  • https://a2design.es/wp-content/uploads/2025/10/Logo-digitalizadores_kit_digital_...co-1024x63-1.webp
  • https://a2design.es/wp-content/uploads/2025/10/img-elizalde.avif
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45-1024x774.webp
  • https://a2design.es/wp-content/uploads/2025/10/cropped-favicon-1-32x32.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45.webp
  • https://a2design.es/wp-content/uploads/2025/10/ADR_Estudio-46.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-26.webp
  • https://a2design.es/wp-content/uploads/2025/10/Can-Vilatorta-31.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-81.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-41.webp
  • Avoid too many fonts (fewFonts)The page has 5 font requests. Do you really need them? What value does the fonts give the user?50
    Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
    Offenders:
  • https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2
  • https://fonts.gstatic.com/s/urbanist/v18/L0x-DF02iFML4hGCyMqlbS0.woff2
  • https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2
  • Total image size shouldn't be too big (imageSize)The page total image size is 999.1 kB. It's really big. Is the page using the right format for the images? Can they be lazy loaded? Are they compressed as good as they can be? Make them smaller by using https://imageoptim.com/.50
    Description: Avoid having too many large images on the page. The images will not affect the first paint of the page, but it will eat bandwidth for the user.
    Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 149.4 kB and the uncompressed size is 507.1 kB. This is quite large. 0
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://a2design.es/wp-includes/js/jquery/jquery.min.js 29.1 KB85.5 KB
    https://a2design.es/wp-includes/js/jquery/jquery-migrate.min.js 4.6 KB13.3 KB
    https://a2design.es/wp-content/themes/hello-elementor/assets/js/hello-frontend.js 527 B1.8 KB
    https://a2design.es/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js 2.3 KB5.6 KB
    https://a2design.es/wp-content/plugins/elementor/assets/js/frontend-modules.min.js 15.1 KB49.3 KB
    https://a2design.es/wp-includes/js/jquery/ui/core.min.js 6.7 KB21.0 KB
    https://a2design.es/wp-content/plugins/elementor/assets/js/frontend.min.js 9.8 KB31.2 KB
    https://a2design.es/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js 6.7 KB23.5 KB
    https://a2design.es/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js 37.3 KB140.3 KB
    https://a2design.es/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js 2.6 KB6.1 KB
    https://a2design.es/wp-includes/js/dist/hooks.min.js 1.9 KB5.5 KB
    https://a2design.es/wp-includes/js/dist/i18n.min.js 2.1 KB5.2 KB
    https://a2design.es/wp-content/plugins/elementor-pro/assets/js/frontend.min.js 6.1 KB23.5 KB
    https://a2design.es/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js 9.9 KB43.2 KB
    https://a2design.es/wp-content/plugins/elementor/assets/js/shared-frontend-handl...b67.bundle.min.js 2.5 KB8.3 KB
    https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nav-menu.8521a059...dc6.bundle.min.js 1.7 KB5.1 KB
    https://a2design.es/wp-content/plugins/elementor/assets/js/text-editor.45609661e...cef.bundle.min.js 623 B1.3 KB
    https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nested-carousel.d...f4a.bundle.min.js 1.4 KB3.3 KB
    https://a2design.es/wp-includes/js/wp-emoji-release.min.js 4.9 KB22.2 KB
    Don't use private headers on static content (privateAssets)The page has 5 requests with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.50
    Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
    Offenders:
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • Best practice advice (81)

    TitleAdviceScore
    Meta description (metaDescription)The meta description is too long. It has 206 characters, the recommended max is 15550
    Description: Use a page description to make the page more relevant to search engines.
    Page title (pageTitle)The title is too long by 14 characters. The recommended max is 6050
    Description: Use a title to make the page more relevant to search engines.
    Avoid too many third party requests (thirdParty)The page do 16% requests to third party domains (10 requests and 122.3 kB). First party is 54 requests and 1.2 MB. The regex .*a2design.* was used to calculate first/third party requests.50
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 44 responses that sets both a max-age and expires header. There are 64 responses that sets a server header. 0
    Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
    Offenders:
  • https://a2design.es/
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/reset.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/reset.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/theme.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/theme.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/header-footer.css
  • https://a2design.es/wp-content/themes/hello-elementor/assets/css/header-footer.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/frontend.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/frontend.min.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-8.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-8.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-image.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-image.min.css
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-heading.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-heading.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-divider.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/widget-divider.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css
  • https://a2design.es/wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/css/widget-nested-carousel.min.css
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/css/widget-nested-carousel.min.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-268.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-268.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-272.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-272.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-276.css
  • https://a2design.es/wp-content/uploads/elementor/css/post-276.css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://a2design.es/wp-includes/js/jquery/jquery.min.js
  • https://a2design.es/wp-includes/js/jquery/jquery-migrate.min.js
  • https://a2design.es/wp-content/uploads/2025/05/A2-Design.webp
  • https://a2design.es/wp-content/uploads/2025/05/A2-Design.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11-772x1024.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11-772x1024.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-75-1024x683.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-75-1024x683.webp
  • https://a2design.es/wp-content/uploads/2025/10/logo-gris-grafito@4x-1.webp
  • https://a2design.es/wp-content/uploads/2025/10/logo-gris-grafito@4x-1.webp
  • https://a2design.es/wp-content/uploads/2025/10/Logo-digitalizadores_kit_digital_...co-1024x63-1.webp
  • https://a2design.es/wp-content/uploads/2025/10/Logo-digitalizadores_kit_digital_...co-1024x63-1.webp
  • https://a2design.es/wp-content/themes/hello-elementor/assets/js/hello-frontend.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/frontend-modules.min.js
  • https://a2design.es/wp-includes/js/jquery/ui/core.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/frontend.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js
  • https://a2design.es/wp-includes/js/dist/hooks.min.js
  • https://a2design.es/wp-includes/js/dist/i18n.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/frontend.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js
  • https://a2design.es/wp-content/uploads/2025/10/img-elizalde.avif
  • https://a2design.es/wp-content/uploads/2025/10/img-elizalde.avif
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45-1024x774.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45-1024x774.webp
  • https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2
  • https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2
  • https://fonts.gstatic.com/s/urbanist/v18/L0x-DF02iFML4hGCyMqlbS0.woff2
  • https://fonts.gstatic.com/s/urbanist/v18/L0x-DF02iFML4hGCyMqlbS0.woff2
  • https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2
  • https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2
  • https://a2design.es/wp-content/plugins/elementor/assets/js/shared-frontend-handl...b67.bundle.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nav-menu.8521a059...dc6.bundle.min.js
  • https://a2design.es/wp-content/plugins/elementor/assets/js/text-editor.45609661e...cef.bundle.min.js
  • https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nested-carousel.d...f4a.bundle.min.js
  • https://a2design.es/wp-content/uploads/2025/10/cropped-favicon-1-32x32.webp
  • https://a2design.es/wp-content/uploads/2025/10/cropped-favicon-1-32x32.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-45.webp
  • https://a2design.es/wp-content/uploads/2025/10/ADR_Estudio-46.webp
  • https://a2design.es/wp-content/uploads/2025/10/ADR_Estudio-46.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-26.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-26.webp
  • https://a2design.es/wp-content/uploads/2025/10/Can-Vilatorta-31.webp
  • https://a2design.es/wp-content/uploads/2025/10/Can-Vilatorta-31.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-81.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-81.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-proyecto-2-11.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-41.webp
  • https://a2design.es/wp-content/uploads/2025/11/Cocinas-Alejandro-41.webp
  • https://a2design.es/wp-includes/js/wp-emoji-release.min.js
  • Privacy advice (83)

    TitleAdviceScore
    Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
    Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
    Offenders:
  • https://a2design.es/
  • Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader)Set a referrer-policy header to make sure you do not leak user information.0
    Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
    Offenders:
  • https://a2design.es/
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 16% requests that are 3rd party (10 requests with a size of 122.3 kB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 10 survelliance requests and uses 1 survelliance tool.0
    Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests.
    Offenders:
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2
  • https://fonts.gstatic.com/s/urbanist/v18/L0x-DF02iFML4hGCyMqlbS0.woff2
  • https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2
  • Page info

    Page info
    TitleDiseño e instalación de cocinas a medida en Sant Feliu de Guixols (Girona)
    Generatorwebp-uploads 2.6.1
    Width1350
    Height4592
    DOM elements598
    Avg DOM depth10
    Max DOM depth19
    Iframes0
    Script tags26
    Local storage0 b
    Session storage94 B
    Network Information API4g

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.54. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    LiteSpeed 100  Web servers
    HSTS 100  Security
    HTTP/3 100  Miscellaneous

    Data collected using Third Party Web 0.26.2

    Cdn
    Google Fonts
    Survelliance
    Google Fonts
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Interaction To Next Paint | Long Aninimation Frames | Metrics from CDP | 

    Visual Metrics

    Browser Metrics

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Element typeDIV
    Element/tag<div class="elementor-element elementor-element-69b09b4 e-con-full e-flex e-con e-child" data-id="69b09b4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"></div>
    Render time 708 ms
    Element render delay247 ms
    TTFB145 ms
    Resource delay282 ms
    Resource load duration35 ms
    Load time530 ms
    URL https://a2design.es/...img-elizalde.avif
    Size (width*height)313875
    DOM path
    main#content > div > div > div:eq(0) > div > div:eq(0) > div:eq(0)> main#content > div > div > div:eq(0) > div > div:eq(0) > div:eq(0)>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    The Largest Contentful Paint API highlighted this image as a part of the LCP.

    LCP

    Detected Cumulative Layout Shift

    0.01151 cumulative layout shift collected from the Cumulative Layout Shift API.

    These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

    ScoreHTML Element
    0.01151<div class="elementor-element elementor-element-0856db6 elementor-icon-list--layout-inline elementor-hidden-mobile elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="0856db6" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default"></div>,<div class="elementor-element elementor-element-72a9634 elementor-widget elementor-widget-button" data-id="72a9634" data-element_type="widget" data-e-type="widget" data-widget_type="button.default"></div>,<ul id="menu-1-a80e136" class="elementor-nav-menu" data-smartmenus-id="17732263281041313"></ul>,<div class="elementor-element elementor-element-8779582 e-con-full e-flex e-con e-child" data-id="8779582" data-element_type="container" data-e-type="container"></div>,<div class="elementor-element elementor-element-ef04b3e elementor-widget__width-inherit elementor-widget-tablet__width-initial elementor-widget elementor-widget-heading" data-id="ef04b3e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default"></div>
    body > header > div > div > div:eq(1) > div:eq(0),body > header > div > div > div:eq(1) > div:eq(1),body > header > header > div > div:eq(1) > div > div > nav:eq(0) > ul#menu-1-a80e136,body > main#content > div > div > div:eq(0) > div > div:eq(1) > div > div:eq(0),body > main#content > div > div > div:eq(0) > div > div:eq(1) > div > div:eq(0) > div:eq(0)
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Interaction to Next Paint

    Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.

    The measured latency was 104 ms.

    Event typepointerenter
    Element typeBODY
    Element class namehome wp-singular page-template-default page page-id-268 wp-custom-logo wp-embed-responsive wp-theme-hello-elementor wp-child-theme-a2design-child hello-elementor-default elementor-default elementor-kit-8 elementor-page elementor-page-268 e--ua-blink e--ua-chrome e--ua-webkit
    Event targetbody.home.wp-singular.page-template-default.page.page-id-268.wp-custom-logo.wp-embed-responsive.wp-theme-hello-elementor.wp-child-theme-a2design-child.hello-elementor-default.elementor-default.elementor-kit-8.elementor-page.elementor-page-268.e--ua-blink.e--ua-chrome.e--ua-webkit
    Load state when the event happenedloading

    Long Animation Frames

    Read more about the Long Animation Frames API here here.

    The top 10 longest animation frames entries

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    88.7 ms197.1 ms117.1 ms0 ms117.1 ms
    https://a2design.es/wp-includes/js/jquery/jquery.min.js

    Invoker:  https://a2design.es/wp-includes/js/jquery/jquery.min.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    22.1 ms73.7 ms31.8 ms31.8 ms0 ms
    https://a2design.es/wp-content/plugins/elementor/assets/js/frontend-modules.min.js

    Invoker:  https://a2design.es/wp-content/plugins/elementor/assets/js/frontend-modules.min.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms82.6 ms1.6 ms1.4 ms0.2 ms
    https://a2design.es/wp-content/plugins/elementor/assets/js/shared-frontend-handlers.03caa53373b56d3bab67.bundle.min.js

    Forced Style And Layout Duration: 3 ms

    Invoker:  https://a2design.es/wp-content/plugins/elementor/assets/js/shared-frontend-handlers.03caa53373b56d3bab67.bundle.min.js
    Invoker Type: classic-script
    Window attribution: self

    https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nav-menu.8521a0597c50611efdc6.bundle.min.js

    Forced Style And Layout Duration: 6 ms

    Invoker:  https://a2design.es/wp-content/plugins/elementor-pro/assets/js/nav-menu.8521a0597c50611efdc6.bundle.min.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms50.1 ms0.8 ms0.8 ms0 ms
    No availible script information.

    Server timings

    There are no Server Timings.

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents7
    Frames7
    JSEventListeners107
    LayoutObjects625
    MediaKeySessions0
    MediaKeys0
    Nodes2754
    Resources146
    ContextLifecycleStateObservers26
    V8PerContextDatas4
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers7
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents0
    LayoutCount17
    RecalcStyleCount595
    LayoutDuration116
    RecalcStyleDuration161
    DevToolsCommandDuration10
    ScriptDuration218
    V8CompileDuration2
    TaskDuration1026
    TaskOtherDuration520
    ThreadTime1
    ProcessTime2
    JSHeapUsedSize6802708
    JSHeapTotalSize11272192
    FirstMeaningfulPaint561
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests64
    Total domains3
    Total transfer size1.3 MB
    Total content size2.0 MB
    Responses missing compression39
    Number of cookies0
    Third party cookies0
    Requests per response code
    20064

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b18.0 KB91.2 KB1
    css0 b37.3 KB363.5 KB24
    javascript0 b145.9 KB495.3 KB19
    image0 b976.8 KB975.6 KB15
    font0 b114.1 KB114.0 KB5
    Total0 b1.3 MB2.0 MB64

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    a2design.es3.408 s1.1 MB1.8 MB54
    fonts.googleapis.com881 ms5.3 KB116.2 KB5
    fonts.gstatic.com167 ms114.1 KB114.0 KB5

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 week1 year
    Last modified8 minutes7 weeks26 weeks

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript11.1 KB5
    image729.7 KB8
    font0 b0
    Total740.8 KB13

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript11.1 KB5
    image729.7 KB8
    font0 b0
    Total740.8 KB13
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    cdn 10
    survelliance 10
    CategoryNumber of tools
    cdn 1
    survelliance 1

    Third party requests and tools

    cdn (10 requests)
    Google Fonts
    survelliance (10 requests)
    Google Fonts

    First party requests and sizes per content type

    Calculated using .*a2design.* (use --firstParty to configure).

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b18.0 KB91.2 KB1
    css0 b32.0 KB247.3 KB19
    javascript0 b145.9 KB495.3 KB19
    image0 b976.8 KB975.6 KB15
    font0 b0 b0 b0
    TotalN/A1.1 MB1.8 MB54

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b5.3 KB116.2 KB5
    javascript0 b0 b0 b0
    image0 b0 b0 b0
    font0 b114.1 KB114.0 KB5
    TotalN/A119.5 KB230.2 KB10
    afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

    Screenshots

    afterPageCompleteCheck.png

    afterPageCompleteCheck.png

    layoutShift.png

    layoutShift.png

    largestContentfulPaint.png

    largestContentfulPaint.png