Run 1 summary

https://maspuigroig.com

Tested 2026-03-11 10:30:14 using Chrome 144.0.7559.59 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayThird partyScreenshots

Summary

MetricValue
Page metrics
Performance score60
Total page size11.7 MB
Requests61
Timing metrics
TTFB8.953 s
First Paint9.856 s
Fully Loaded11.051 s
Google Web Vitals
TTFB8.953 s
First Contentful Paint (FCP) 9.856 s
Largest Contentful Paint (LCP) 10.252 s
Cumulative Layout Shift (CLS) 0.07
Total Blocking Time22 ms
Max Potential FID72 ms
CPU metrics
CPU long tasks3
CPU last long task happens at9.944 s
Visual Metrics
First Visual Change9.876 s
Speed Index11.166 s
Visual Complete 85%11.445 s
Visual Complete 99%11.445 s
Last Visual Change11.445 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
9.8 sCPU Long Task duration 77 ms
9.9 sCPU Long Task duration 78 msFirst Contentful Paint 9.856 sFirst Visual Change 9.876 s
10 sLayout Shift 0.00037 9.906 sCPU Long Task duration 72 ms
10.1 sLayout Shift 0.01031 10.011 s
10.2 sDOM Content Loaded Time 10.155 s
10.3 sLayout Shift 0.06251 10.239 sLCP <A> logo 10.252 s
10.4 s
10.5 s
10.6 sPage Load Time 10.586 s
10.7 s
10.8 s
10.9 s
11 s
11.1 sFully Loaded 11.051 s
11.2 s
11.3 s
11.4 s
11.5 sLast Visual Change 11.445 sVisual Complete 85% 11.445 sVisual Complete 95% 11.445 sVisual Complete 99% 11.445 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 (60)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 4 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.60
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://maspuigroig.com/wp-content/uploads/2015/06/IMG_6290r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6326r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/07/IMG_1311r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6290r.jpg
  • Have a fast first contentful paint (firstContentfulPaint)First contentful paint is poor (9.856 s). It is in the Google Web Vitals poor range, slower than 3 seconds.The page has a high time to first byte (TTFB) 8.953 s that you should look into to improve first contentful paint.0
    Description: The First Contentful Paint (FCP) metric measures the time from when the page starts loading to when any part of the page content is rendered on the screen. For this metric, "content" refers to text, images (including background images), <svg> elements, or non-white <canvas> elements.
    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.
    Have a fast largest contentful paint (largestContentfulPaint)Largest contentful paint is poor 10.252 s. It is in the Google Web Vitals poor range, slower than 4.5 seconds.0
    Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance.
    Offenders:
  • <a id="logo" href="https://maspuigroig.com" title="Mas Puig Roig" data-height="60" data-padding="15"></a>
  • Avoid CPU Long Tasks (longTasks)The page has 3 CPU long tasks with the total of 227 ms. The total blocking time is 22 ms and 2 long tasks before first contentful paint with total time of 155 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.40
    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
  • unknown
  • unknown
  • Avoid Frontend single point of failures (spof)The page has 1 request 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
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 20 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 293.6 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://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1
  • https://maspuigroig.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1
  • https://maspuigroig.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6
  • https://maspuigroig.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.2
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.2
  • https://maspuigroig.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3
  • https://maspuigroig.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.13.3
  • https://maspuigroig.com/wp-content/themes/betheme/js/plugins.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/js/menu.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/jplayer.min.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/js/parallax/translate3d.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/js/scripts.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.8
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8
  • https://www.google.com/maps/embed...le.com/maps/embed
  • https://maspuigroig.com/wp-includes/js/wp-emoji-release.min.js?ver=6.7.5
  • https://maspuigroig.com/wp-json/contact-form-7/v1/contact-forms/634/feedback/schema
  • https://maps.googleapis.com/maps/api/mapsjs/gen_204?csp_test=true
  • Long cache headers is good (cacheHeadersLong)The page has 25 requests that have a shorter cache time than 30 days (but still a cache time).75
    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://maspuigroig.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.2
  • https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/fontawesome/fontawesome.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/css/jplayer.blu...ue.monday.min.css
  • https://maspuigroig.com/wp-content/themes/betheme/css/responsive.css?ver=26.3.4.1
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://maspuigroig.com/wp-content/themes/betheme-child/style.css?ver=6.7.5
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/dummy.png
  • https://fonts.googleapis.com/css?family=Roboto:400&display=swap
  • https://maspuigroig.com/wp-content/uploads/betheme/css/post-47.css?ver=1773225024
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.5.8
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/mfn/icons.woff?31690507
  • https://maspuigroig.com/wp-content/uploads/2015/06/llabia-1010323.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6290r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6326r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/07/IMG_1311r.jpg
  • https://maps.googleapis.com/maps/api/js...s.com/maps/api/js
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/loader.gif
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6261c.jpg
  • https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage...rvice.GetMapImage
  • https://maspuigroig.com/wp-content/uploads/2017/02/llabia_s-1010258.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6281c.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/favicon.ico
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 124.1 kB and uncompressed size is 777.7 kB. That is big and the CSS could most probably be smaller.0
    Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore.
    Offenders:
    URLTransfer sizeContent size
    https://maspuigroig.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5 13.9 KB112.0 KB
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.2 1001 B2.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1 61.0 KB358.7 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.css?ver=26.3.4.1 4.6 KB58.1 KB
    https://maspuigroig.com/wp-content/themes/betheme/fonts/fontawesome/fontawesome.css?ver=26.3.4.1 12.2 KB59.3 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/css/jplayer.blu...ue.monday.min.css 1.9 KB9.5 KB
    https://maspuigroig.com/wp-content/themes/betheme/css/responsive.css?ver=26.3.4.1 10.6 KB63.2 KB
    https://fonts.googleapis.com/css...oogleapis.com/css 2.7 KB33.7 KB
    https://maspuigroig.com/wp-content/themes/betheme-child/style.css?ver=6.7.5 172 B207 B
    https://fonts.googleapis.com/css?family=Roboto:400&display=swap 1.6 KB5.6 KB
    https://maspuigroig.com/wp-content/uploads/betheme/css/post-47.css?ver=1773225024 105 B52 B
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.5.8 11.5 KB56.3 KB
    Avoid too many fonts (fewFonts)The page has 6 font requests. Do you really need them? What value does the fonts give the user?40
    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/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/mfn/icons.woff?31690507
  • https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs...MLoHQuAj-kw.woff2
  • https://fonts.gstatic.com/s/patuaone/v22/ZXuke1cDvLCKLDcimxB44_lu.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAo.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • Total image size shouldn't be too big (imageSize)The page total image size is 11.3 MB. 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 673.6 kB and the uncompressed size is 2.6 MB. This is totally crazy! There is really room for improvement here. 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://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 29.1 KB85.5 KB
    https://maspuigroig.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 4.6 KB13.3 KB
    https://maspuigroig.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6 1.6 KB4.7 KB
    https://maspuigroig.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6 3.5 KB8.9 KB
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.2 3.3 KB12.2 KB
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.2 3.9 KB13.1 KB
    https://maspuigroig.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3 6.7 KB21.0 KB
    https://maspuigroig.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.13.3 3.7 KB11.7 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/plugins.js?ver=26.3.4.1 52.7 KB196.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/menu.js?ver=26.3.4.1 904 B2.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.js?ver=26.3.4.1 581 B1.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/jplayer.min.js?ver=26.3.4.1 12.1 KB51.3 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/parallax/translate3d.js?ver=26.3.4.1 1.2 KB3.9 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/scripts.js?ver=26.3.4.1 18.5 KB89.4 KB
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.8 44.5 KB121.2 KB
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8 92.8 KB370.9 KB
    https://maspuigroig.com/wp-includes/js/wp-emoji-release.min.js?ver=6.7.5 4.6 KB18.3 KB
    https://maps.gstatic.com/maps-api-v3/embed/js/64/3a/intl/es_ALL/init_embed.js 80.2 KB290.3 KB
    https://maps.googleapis.com/maps/api/js...s.com/maps/api/js 2.9 KB12.6 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/geometry.js 2.9 KB6.8 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search.js 1.2 KB2.6 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/main.js 83.0 KB291.4 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/common.js 36.9 KB125.1 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/util.js 70.1 KB305.0 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/map.js 25.5 KB80.0 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/places.js 59.6 KB335.1 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/onion.js 9.9 KB30.2 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search_impl.js 1.3 KB3.5 KB
    Make each CSS response small (optimalCssSize)https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1 size is 62.4 kB (62424) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.90
    Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
    Offenders:
    URLTransfer sizeContent size
    https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1 61.0 KB358.7 KB
    Total page size shouldn't be too big (pageSize)The page total transfer size is 12.3 MB, which is more than the coach limit of 2 MB. That is insane and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://maspuigroig.com/ 26.5 KB134.8 KB
    https://maspuigroig.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5 13.9 KB112.0 KB
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.2 1001 B2.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1 61.0 KB358.7 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.css?ver=26.3.4.1 4.6 KB58.1 KB
    https://maspuigroig.com/wp-content/themes/betheme/fonts/fontawesome/fontawesome.css?ver=26.3.4.1 12.2 KB59.3 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/css/jplayer.blu...ue.monday.min.css 1.9 KB9.5 KB
    https://maspuigroig.com/wp-content/themes/betheme/css/responsive.css?ver=26.3.4.1 10.6 KB63.2 KB
    https://fonts.googleapis.com/css...oogleapis.com/css 2.7 KB33.7 KB
    https://maspuigroig.com/wp-content/themes/betheme-child/style.css?ver=6.7.5 172 B207 B
    https://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 29.1 KB85.5 KB
    https://maspuigroig.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 4.6 KB13.3 KB
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/dummy.png 129 B68 B
    https://fonts.googleapis.com/css?family=Roboto:400&display=swap 1.6 KB5.6 KB
    https://maspuigroig.com/wp-content/uploads/betheme/css/post-47.css?ver=1773225024 105 B52 B
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.5.8 11.5 KB56.3 KB
    https://maspuigroig.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6 1.6 KB4.7 KB
    https://maspuigroig.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6 3.5 KB8.9 KB
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.2 3.3 KB12.2 KB
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.2 3.9 KB13.1 KB
    https://maspuigroig.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3 6.7 KB21.0 KB
    https://maspuigroig.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.13.3 3.7 KB11.7 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/plugins.js?ver=26.3.4.1 52.7 KB196.8 KB
    https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2 42.7 KB42.1 KB
    https://maspuigroig.com/wp-content/themes/betheme/fonts/mfn/icons.woff?31690507 79.6 KB79.5 KB
    https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs...MLoHQuAj-kw.woff2 23.2 KB23.1 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/menu.js?ver=26.3.4.1 904 B2.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.js?ver=26.3.4.1 581 B1.8 KB
    https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/jplayer.min.js?ver=26.3.4.1 12.1 KB51.3 KB
    https://maspuigroig.com/wp-content/uploads/2015/06/llabia-1010323.jpg 184.3 KB184.1 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/parallax/translate3d.js?ver=26.3.4.1 1.2 KB3.9 KB
    https://maspuigroig.com/wp-content/themes/betheme/js/scripts.js?ver=26.3.4.1 18.5 KB89.4 KB
    https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6290r.jpg 991.0 KB990.4 KB
    https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6326r.jpg 1.2 MB1.2 MB
    https://maspuigroig.com/wp-content/uploads/2015/07/IMG_1311r.jpg 141.2 KB141.0 KB
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.8 44.5 KB121.2 KB
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8 92.8 KB370.9 KB
    https://fonts.gstatic.com/s/patuaone/v22/ZXuke1cDvLCKLDcimxB44_lu.woff2 12.7 KB12.6 KB
    https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAo.woff2 21.4 KB21.4 KB
    https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2 7.7 KB7.7 KB
    https://www.google.com/maps/embed...le.com/maps/embed 1.7 KB2.6 KB
    https://maspuigroig.com/wp-includes/js/wp-emoji-release.min.js?ver=6.7.5 4.6 KB18.3 KB
    https://maspuigroig.com/wp-json/contact-form-7/v1/contact-forms/634/feedback/schema 685 B1.2 KB
    https://maps.gstatic.com/maps-api-v3/embed/js/64/3a/intl/es_ALL/init_embed.js 80.2 KB290.3 KB
    https://maps.googleapis.com/maps/api/js...s.com/maps/api/js 2.9 KB12.6 KB
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/loader.gif 2.5 KB2.5 KB
    https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6261c.jpg 392.7 KB392.5 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/geometry.js 2.9 KB6.8 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search.js 1.2 KB2.6 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/main.js 83.0 KB291.4 KB
    https://maps.googleapis.com/maps/api/mapsjs/gen_204?csp_test=true 46 B3 B
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/common.js 36.9 KB125.1 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/util.js 70.1 KB305.0 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/map.js 25.5 KB80.0 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/places.js 59.6 KB335.1 KB
    https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage...rvice.GetMapImage 30.9 KB30.9 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/onion.js 9.9 KB30.2 KB
    https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search_impl.js 1.3 KB3.5 KB
    https://maspuigroig.com/wp-content/uploads/2017/02/llabia_s-1010258.jpg 7.5 MB7.5 MB
    https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6281c.jpg 308.2 KB308.0 KB
    https://maspuigroig.com/wp-content/uploads/2015/06/favicon.ico 478 B1.1 KB
    Don't use private headers on static content (privateAssets)The page has 2 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.80
    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?family=Roboto:400&display=swap
  • Best practice advice (91)

    TitleAdviceScore
    Avoid too many third party requests (thirdParty)The page do 34% requests to third party domains (21 requests and 530.5 kB). First party is 40 requests and 11.7 MB. The regex .*maspuigroig.* 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 40 responses that sets both a max-age and expires header. There are 1 response that sets a pragma no-cache header (that is a request header). There are 61 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://maspuigroig.com/
  • https://maspuigroig.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5
  • https://maspuigroig.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.2
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.2
  • https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/css/be.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/fontawesome/fontawesome.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/fontawesome/fontawesome.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/css/jplayer.blu...ue.monday.min.css
  • https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/css/jplayer.blu...ue.monday.min.css
  • https://maspuigroig.com/wp-content/themes/betheme/css/responsive.css?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/css/responsive.css?ver=26.3.4.1
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://maspuigroig.com/wp-content/themes/betheme-child/style.css?ver=6.7.5
  • https://maspuigroig.com/wp-content/themes/betheme-child/style.css?ver=6.7.5
  • https://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1
  • https://maspuigroig.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/dummy.png
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/dummy.png
  • https://fonts.googleapis.com/css?family=Roboto:400&display=swap
  • https://fonts.googleapis.com/css?family=Roboto:400&display=swap
  • https://maspuigroig.com/wp-content/uploads/betheme/css/post-47.css?ver=1773225024
  • https://maspuigroig.com/wp-content/uploads/betheme/css/post-47.css?ver=1773225024
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.5.8
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.5.8
  • https://maspuigroig.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6
  • https://maspuigroig.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.2
  • https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.2
  • https://maspuigroig.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3
  • https://maspuigroig.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.13.3
  • https://maspuigroig.com/wp-content/themes/betheme/js/plugins.js?ver=26.3.4.1
  • https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/mfn/icons.woff?31690507
  • https://maspuigroig.com/wp-content/themes/betheme/fonts/mfn/icons.woff?31690507
  • https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs...MLoHQuAj-kw.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs...MLoHQuAj-kw.woff2
  • https://maspuigroig.com/wp-content/themes/betheme/js/menu.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/animations/animations.min.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/assets/jplayer/jplayer.min.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/uploads/2015/06/llabia-1010323.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/llabia-1010323.jpg
  • https://maspuigroig.com/wp-content/themes/betheme/js/parallax/translate3d.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/themes/betheme/js/scripts.js?ver=26.3.4.1
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6290r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6290r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6326r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6326r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/07/IMG_1311r.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/07/IMG_1311r.jpg
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.8
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8
  • https://fonts.gstatic.com/s/patuaone/v22/ZXuke1cDvLCKLDcimxB44_lu.woff2
  • https://fonts.gstatic.com/s/patuaone/v22/ZXuke1cDvLCKLDcimxB44_lu.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAo.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAo.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://www.google.com/maps/embed...le.com/maps/embed
  • https://www.google.com/maps/embed...le.com/maps/embed
  • https://www.google.com/maps/embed...le.com/maps/embed
  • https://maspuigroig.com/wp-includes/js/wp-emoji-release.min.js?ver=6.7.5
  • https://maspuigroig.com/wp-json/contact-form-7/v1/contact-forms/634/feedback/schema
  • https://maps.gstatic.com/maps-api-v3/embed/js/64/3a/intl/es_ALL/init_embed.js
  • https://maps.gstatic.com/maps-api-v3/embed/js/64/3a/intl/es_ALL/init_embed.js
  • https://maps.googleapis.com/maps/api/js...s.com/maps/api/js
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/loader.gif
  • https://maspuigroig.com/wp-content/plugins/revslider/public/assets/assets/loader.gif
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6261c.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6261c.jpg
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/geometry.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/geometry.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/main.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/main.js
  • https://maps.googleapis.com/maps/api/mapsjs/gen_204?csp_test=true
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/common.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/common.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/util.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/util.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/map.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/map.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/places.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/places.js
  • https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage...rvice.GetMapImage
  • https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage...rvice.GetMapImage
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/onion.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/onion.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search_impl.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search_impl.js
  • https://maspuigroig.com/wp-content/uploads/2017/02/llabia_s-1010258.jpg
  • https://maspuigroig.com/wp-content/uploads/2017/02/llabia_s-1010258.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6281c.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/IMG_6281c.jpg
  • https://maspuigroig.com/wp-content/uploads/2015/06/favicon.ico
  • https://maspuigroig.com/wp-content/uploads/2015/06/favicon.ico
  • 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://maspuigroig.com/
  • 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://maspuigroig.com/
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 34% requests that are 3rd party (21 requests with a size of 530.5 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 21 survelliance requests and uses 3 survelliance tools. The page do 14 utility requests and uses 2 utility tools.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?family=Roboto:400&display=swap
  • https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs...MLoHQuAj-kw.woff2
  • https://fonts.gstatic.com/s/patuaone/v22/ZXuke1cDvLCKLDcimxB44_lu.woff2
  • https://fonts.gstatic.com/s/roboto/v51/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAo.woff2
  • https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2
  • https://www.google.com/maps/embed...le.com/maps/embed
  • https://maps.gstatic.com/maps-api-v3/embed/js/64/3a/intl/es_ALL/init_embed.js
  • https://maps.googleapis.com/maps/api/js...s.com/maps/api/js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/geometry.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/main.js
  • https://maps.googleapis.com/maps/api/mapsjs/gen_204?csp_test=true
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/common.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/util.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/map.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/places.js
  • https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage...rvice.GetMapImage
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/onion.js
  • https://maps.googleapis.com/maps-api-v3/api/js/64/3a/intl/es_ALL/search_impl.js
  • Page info

    Page info
    TitleInici - Mas Puig Roig
    GeneratorWordPress 6.7.5
    Width1350
    Height3381
    DOM elements517
    Avg DOM depth11
    Max DOM depth19
    Iframes1
    Script tags28
    Local storage0 b
    Session storage94 B
    Network Information API4g
    Resource Hints
    dns-prefetch
    https://fonts.googleapis.com/

    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
    WordPress 6.7.5100  CMS Blogs
    MySQL 100  Databases
    PHP 100  Programming languages
    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
    Other Google APIs/SDKs
    Google Maps
    Utility
    Other Google APIs/SDKs
    Google Maps
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | 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 typeA
    Element/tag<a id="logo" href="https://maspuigroig.com" title="Mas Puig Roig" data-height="60" data-padding="15"></a>
    Render time 10.252 s
    Element render delay1.299 s
    TTFB8.953 s
    Resource delay0 ms
    Resource load duration0 ms
    Element idlogo
    Load time0 ms
    Size (width*height)4740
    DOM path
    div#Wrapper > div#Header_wrapper > header#Header > div#Top_bar > div > div > div:eq(0) > div:eq(0) > a#logo> div#Wrapper > div#Header_wrapper > header#Header > div#Top_bar > div > div > div:eq(0) > div:eq(0) > a#logo>
    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.

    Detected Cumulative Layout Shift

    0.07319 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.06251<div class="mfn-main-slider mfn-rev-slider"></div>
    body > div#Wrapper > div#Header_wrapper > header#Header > div:eq(3)
    0.01031<div class="mfn-main-slider mfn-rev-slider"></div>
    body > div#Wrapper > div#Header_wrapper > header#Header > div:eq(3)
    0.00037<div class="container"></div>
    body > div#Wrapper > div#Header_wrapper > header#Header > div#Action_bar > div
    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.

    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
    64.9 ms720.1 ms73.2 ms0.1 ms73.1 ms
    https://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1

    Invoker:  https://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1
    Invoker Type: classic-script
    Window attribution: self

    https://maspuigroig.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1

    Invoker:  https://maspuigroig.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    30.3 ms22.5 ms68.4 ms68.4 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    26.1 ms69.2 ms47.7 ms47.3 ms0.4 ms
    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.8

    Invoker:  https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.5.8
    Invoker Type: classic-script
    Window attribution: self

    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8

    Invoker:  https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8
    Invoker Type: classic-script
    Window attribution: self

    https://maspuigroig.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.5.8

    Forced Style And Layout Duration: 2 ms

    Invoker:  FrameRequestCallback
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 56424

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    22.2 ms11.3 ms62.1 ms62.1 ms0 ms
    https://maspuigroig.com/

    Forced Style And Layout Duration: 5 ms

    Invoker:  https://maspuigroig.com/
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    12 ms62.5 ms2.8 ms2.7 ms0.1 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    1.6 ms83.3 ms2 ms2 ms0 ms
    https://maspuigroig.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.2

    Invoker:  #document.onDOMContentLoaded
    Invoker Type: event-listener
    Window attribution: self
    Source char position: 12111

    https://maspuigroig.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1

    Forced Style And Layout Duration: 18 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 27411

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms57.2 ms1.1 ms1 ms0.1 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms78.6 ms0.9 ms0.8 ms0.1 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
    Documents13
    Frames10
    JSEventListeners221
    LayoutObjects718
    MediaKeySessions0
    MediaKeys0
    Nodes1970
    Resources110
    ContextLifecycleStateObservers34
    V8PerContextDatas4
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers13
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents1
    LayoutCount44
    RecalcStyleCount60
    LayoutDuration190
    RecalcStyleDuration64
    DevToolsCommandDuration12
    ScriptDuration519
    V8CompileDuration7
    TaskDuration1631
    TaskOtherDuration840
    ThreadTime1
    ProcessTime2
    JSHeapUsedSize9618860
    JSHeapTotalSize13893632
    FirstMeaningfulPaint10035
    | 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 requests61
    Total domains6
    Total transfer size11.7 MB
    Total content size14.2 MB
    Responses missing compression39
    Number of cookies0
    Third party cookies0
    Requests per response code
    20061

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b28.1 KB137.4 KB2
    css0 b121.2 KB759.5 KB12
    javascript0 b657.8 KB2.5 MB28
    image0 b10.7 MB10.7 MB10
    font0 b187.4 KB186.4 KB6
    json0 b731 B1.2 KB2
    favicon0 b478 B1.1 KB1
    Total0 b11.7 MB14.2 MB61

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    maspuigroig.com18.605 s11.2 MB12.6 MB40
    fonts.googleapis.com134 ms4.3 KB39.3 KB2
    fonts.gstatic.com195 ms107.7 KB106.9 KB5
    www.google.com192 ms1.7 KB2.6 KB1
    maps.gstatic.com121 ms80.2 KB290.3 KB1
    maps.googleapis.com771 ms324.2 KB1.2 MB12

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 week1 year
    Last modified0 seconds1 year10 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript11.2 KB2
    image7.8 MB3
    font0 b0
    favicon478 B1
    Total7.8 MB6

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript373.4 KB11
    image8.2 MB5
    font0 b0
    json731 B2
    favicon478 B1
    Total8.6 MB19
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    cdn 7
    survelliance 21
    utility 14
    CategoryNumber of tools
    cdn 1
    survelliance 3
    utility 2

    Third party requests and tools

    cdn (7 requests)
    Google Fonts
    survelliance (21 requests)
    Google Fonts
    Other Google APIs/SDKs
    Google Maps
    utility (14 requests)
    Other Google APIs/SDKs
    Google Maps

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b26.5 KB134.8 KB1
    css0 b116.9 KB720.2 KB10
    javascript0 b284.4 KB1.0 MB17
    image0 b10.7 MB10.7 MB9
    font0 b79.6 KB79.5 KB1
    json0 b685 B1.2 KB1
    favicon0 b478 B1.1 KB1
    TotalN/A11.2 MB12.6 MB40

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b1.7 KB2.6 KB1
    css0 b4.3 KB39.3 KB2
    javascript0 b373.4 KB1.4 MB11
    image0 b30.9 KB30.9 KB1
    font0 b107.7 KB106.9 KB5
    json0 b46 B3 B1
    TotalN/A518.0 KB1.6 MB21
    afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

    Screenshots

    afterPageCompleteCheck.png

    afterPageCompleteCheck.png

    layoutShift.png

    layoutShift.png

    largestContentfulPaint.png

    largestContentfulPaint.png