Run 2 summary

https://museuterrissa.cat

Tested 2026-03-11 10:20:56 using Chrome 144.0.7559.59 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayThird partyScreenshots

Summary

MetricValue
Page metrics
Performance score65
Total page size1.4 MB
Requests57
Timing metrics
TTFB681 ms
First Paint1.160 s
Fully Loaded2.119 s
Google Web Vitals
TTFB681 ms
First Contentful Paint (FCP) 1.160 s
Largest Contentful Paint (LCP) 1.192 s
Cumulative Layout Shift (CLS) 0.01
144 ms
CPU metrics
CPU long tasks1
CPU last long task happens at921 ms
Visual Metrics
First Visual Change1.167 s
Speed Index1.415 s
Visual Complete 85%1.233 s
Visual Complete 99%4.667 s
Last Visual Change4.667 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
1 sCPU Long Task duration 86 ms
1.1 sDOM Content Loaded Time 1.073 s
1.2 sPage Load Time 1.141 sFirst Contentful Paint 1.160 sFirst Visual Change 1.167 sLCP <DIV> 1.192 s
1.3 sVisual Complete 85% 1.233 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 sFully Loaded 2.119 sLayout Shift 0.00033 2.134 sLayout Shift 0.00044 2.149 sLayout Shift 0.00068 2.165 sLayout Shift 0.00085 2.182 sLayout Shift 0.00260 2.199 s
2.3 sLayout Shift 0.00142 2.215 sLayout Shift 0.00138 2.232 sLayout Shift 0.00314 2.249 sLayout Shift 0.00128 2.265 sVisual Complete 95% 2.267 sLayout Shift 0.00094 2.283 sLayout Shift 0.00058 2.299 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
4.1 s
4.2 s
4.3 s
4.4 s
4.5 s
4.6 s
4.7 sLast Visual Change 4.667 sVisual Complete 99% 4.667 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 (65)

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://museuterrissa.cat/images/Fa%C3%A7ana_Museu.jpg
  • https://museuterrissa.cat/cache/ais_8aad1823177c2ac9cc08b353da5ab4e1_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_8aad1823177c2ac9cc08b353da5ab4e1_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_8aad1823177c2ac9cc08b353da5ab4e1_450_600.jpeg
  • 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 using more than one jQuery version per page (jquery)The page uses 2 versions of jQuery! You only need one version, please remove the unnecessary version(s).0
    Description: There are sites out there that use multiple versions of jQuery on the same page. You shouldn't do that because the user will then unnecessarily download extra data. Cleanup the code and make sure you only use one version.
    Offenders:
  • 1.8.2
  • 1.11.1
  • Avoid CPU Long Tasks (longTasks)The page has 1 CPU long task with the total of 86 ms. The total blocking time is 0 ms and 1 long task before first contentful paint with total time of 86 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:
  • self
  • Avoid Frontend single point of failures (spof)The page has 2 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.80
    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:
  • http://code.jquery.com/jquery-latest.min.js
  • https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  • Avoid doing redirects (assetsRedirects)The page has 1 redirect. 1 of the redirects are from the base domain, please fix them! 90
    Description: A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.
    Offenders:
  • https://museuterrissa.cat/
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 18 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 155.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://museuterrissa.cat/
  • https://museuterrissa.cat/media/system/js/mootools-core.js
  • https://museuterrissa.cat/media/system/js/core.js
  • https://museuterrissa.cat/media/system/js/caption.js
  • https://museuterrissa.cat/media/system/js/mootools-more.js
  • https://museuterrissa.cat/media/com_attachments/js/attachments_refresh.js
  • https://museuterrissa.cat/plugins/system/rokbox/assets/js/rokbox.js
  • https://museuterrissa.cat/libraries/gantry/js/gantry-totop.js
  • https://museuterrissa.cat/libraries/gantry/js/browser-engines.js
  • https://museuterrissa.cat/templates/rt_metropolis/js/rokmediaqueries.js
  • https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/rokmediaqueries.js
  • https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/responsive.js
  • https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/responsive-selectbox.js
  • https://museuterrissa.cat/media/com_finder/js/autocompleter.js
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/jquery.noconflict.js
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/jquery.nivo.slider.js
  • https://museuterrissa.cat/ca/#
  • https://museuterrissa.cat/favicon.ico
  • Long cache headers is good (cacheHeadersLong)The page has 36 requests that have a shorter cache time than 30 days (but still a cache time).64
    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://museuterrissa.cat/media/com_attachments/css/attachments_hide.css
  • https://museuterrissa.cat/plugins/system/rokbox/assets/styles/rokbox.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/menu.css
  • https://museuterrissa.cat/libraries/gantry/css/grid-responsive.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/bootstrap.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/master-1ec488d8bf...2ff5bd706bc44.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/mediaqueries.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/thirdparty-k2.css
  • https://museuterrissa.cat/modules/mod_cookiesaccept/screen.css
  • https://museuterrissa.cat/media/com_finder/css/finder.css
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/nivo-slider.css
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/square/style.css
  • https://museuterrissa.cat/images/Fa%C3%A7ana_Museu.jpg
  • https://museuterrissa.cat/cache/ais_966cfa35809de8fbb8c52fa92d38eb0b_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_d7c5419c4ecfd4c6261729b46495c335_450_751.jpeg
  • https://museuterrissa.cat/cache/ais_0d08163bd50ae1f136ca646f289f54d9_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_8aad1823177c2ac9cc08b353da5ab4e1_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_33a227c0be4015576ea9c234ea8392e4_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_933de0329f789a7c28063da07b1d765f_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_3ad9ded8d96801c7fa9a83faf08d7d48_450_600.jpeg
  • https://museuterrissa.cat/images/minimapa.jpg
  • https://museuterrissa.cat/images/logos-bot/diputacio_girona.png
  • https://museuterrissa.cat/images/logos-bot/cb_pirineu.png
  • https://museuterrissa.cat/images/logos-bot/el_punt.png
  • https://museuterrissa.cat/images/logos-bot/vanguardia.png
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/repeat-body-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/bottom-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/top-image.jpg
  • https://museuterrissa.cat/images/logo.png
  • https://museuterrissa.cat/templates/rt_metropolis/images/dark/small-arrows.png
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/theme...mages/loading.gif
  • https://museuterrissa.cat/templates/rt_metropolis/images/dark/large-arrows.png
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Regular-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Light-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-ExtraLight-webfont.woff
  • https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 58.7 kB and uncompressed size is 406.8 kB. That is big and the CSS could most probably be smaller.50
    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://museuterrissa.cat/media/com_attachments/css/attachments_hide.css 197 B92 B
    https://museuterrissa.cat/plugins/system/rokbox/assets/styles/rokbox.css 9.0 KB29.3 KB
    https://museuterrissa.cat/templates/rt_metropolis/css-compiled/menu.css 2.5 KB18.7 KB
    https://museuterrissa.cat/libraries/gantry/css/grid-responsive.css 944 B5.3 KB
    https://museuterrissa.cat/templates/rt_metropolis/css-compiled/bootstrap.css 17.4 KB108.0 KB
    https://museuterrissa.cat/templates/rt_metropolis/css-compiled/master-1ec488d8bf...2ff5bd706bc44.css 20.4 KB185.0 KB
    https://museuterrissa.cat/templates/rt_metropolis/css-compiled/mediaqueries.css 1.6 KB12.5 KB
    https://museuterrissa.cat/templates/rt_metropolis/css-compiled/thirdparty-k2.css 2.5 KB29.7 KB
    https://museuterrissa.cat/modules/mod_cookiesaccept/screen.css 739 B2.4 KB
    https://museuterrissa.cat/media/com_finder/css/finder.css 569 B1.6 KB
    https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/nivo-slider.css 823 B2.4 KB
    https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/square/style.css 669 B2.4 KB
    Avoid redirecting the main document (documentRedirect)The main document gets redirected 1 time(s). Remove those redirect and make the page faster!0
    Description: You should never ever redirect the main document, because it will make the page load slower for the user. Well, you should redirect the user if the user tries to use HTTP and there's an HTTPS version of the page. The coach checks for that. :)
    Offenders:
  • https://museuterrissa.cat/
  • Avoid too many fonts (fewFonts)The page has 3 font requests. Do you really need them? What value does the fonts give the user?70
    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://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Regular-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Light-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-ExtraLight-webfont.woff
  • Total image size shouldn't be too big (imageSize)The page total image size is 1.1 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 197.2 kB and the uncompressed size is 628.6 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://museuterrissa.cat/media/system/js/mootools-core.js 29.6 KB94.1 KB
    https://museuterrissa.cat/media/system/js/core.js 1.5 KB4.7 KB
    https://museuterrissa.cat/media/system/js/caption.js 363 B729 B
    https://museuterrissa.cat/media/system/js/mootools-more.js 64.0 KB232.7 KB
    https://museuterrissa.cat/media/com_attachments/js/attachments_refresh.js 745 B1.8 KB
    https://museuterrissa.cat/plugins/system/rokbox/assets/js/rokbox.js 16.4 KB54.1 KB
    https://museuterrissa.cat/libraries/gantry/js/gantry-totop.js 260 B378 B
    https://museuterrissa.cat/libraries/gantry/js/browser-engines.js 1.1 KB2.6 KB
    https://museuterrissa.cat/templates/rt_metropolis/js/rokmediaqueries.js 1.6 KB4.6 KB
    https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/rokmediaqueries.js 1.2 KB2.9 KB
    https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/responsive.js 878 B2.1 KB
    https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/responsive-selectbox.js 889 B2.0 KB
    http://code.jquery.com/jquery-latest.min.js 32.4 KB93.5 KB
    https://museuterrissa.cat/media/com_finder/js/autocompleter.js 4.3 KB15.9 KB
    https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js 33.5 KB91.2 KB
    https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/jquery.noconflict.js 109 B81 B
    https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/jquery.nivo.slider.js 3.9 KB10.4 KB
    Make each CSS response small (optimalCssSize)https://museuterrissa.cat/templates/rt_metropolis/css-compiled/bootstrap.css size is 17.8 kB (17833) and that is bigger than the limit of 14.5 kB. https://museuterrissa.cat/templates/rt_metropolis/css-compiled/master-1ec488d8bf5847be4c52ff5bd706bc44.css size is 20.9 kB (20924) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.80
    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://museuterrissa.cat/templates/rt_metropolis/css-compiled/bootstrap.css 17.4 KB108.0 KB
    https://museuterrissa.cat/templates/rt_metropolis/css-compiled/master-1ec488d8bf...2ff5bd706bc44.css 20.4 KB185.0 KB
    Don't use private headers on static content (privateAssets)The page has 1 request with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.90
    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://museuterrissa.cat/favicon.ico
  • Avoid missing and error requests (responseOk)The page has 1 error response. The page has 1 response with code 404. 90
    Description: Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.
    Offenders:
  • https://museuterrissa.cat/favicon.ico
  • Best practice advice (88)

    TitleAdviceScore
    Meta description (metaDescription)The page is missing a meta description.0
    Description: Use a page description to make the page more relevant to search engines.
    Avoid unnecessary headers (unnecessaryHeaders)There are 1 response that sets a p3p header. There are 37 responses that sets both a max-age and expires header. There are 2 responses that sets a pragma no-cache header (that is a request header). There are 57 responses that sets a server header. 3
    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://museuterrissa.cat/
  • https://museuterrissa.cat/ca/
  • https://museuterrissa.cat/media/com_attachments/css/attachments_hide.css
  • https://museuterrissa.cat/media/com_attachments/css/attachments_hide.css
  • https://museuterrissa.cat/plugins/system/rokbox/assets/styles/rokbox.css
  • https://museuterrissa.cat/plugins/system/rokbox/assets/styles/rokbox.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/menu.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/menu.css
  • https://museuterrissa.cat/libraries/gantry/css/grid-responsive.css
  • https://museuterrissa.cat/libraries/gantry/css/grid-responsive.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/bootstrap.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/bootstrap.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/master-1ec488d8bf...2ff5bd706bc44.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/master-1ec488d8bf...2ff5bd706bc44.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/mediaqueries.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/mediaqueries.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/thirdparty-k2.css
  • https://museuterrissa.cat/templates/rt_metropolis/css-compiled/thirdparty-k2.css
  • https://museuterrissa.cat/modules/mod_cookiesaccept/screen.css
  • https://museuterrissa.cat/modules/mod_cookiesaccept/screen.css
  • https://museuterrissa.cat/media/com_finder/css/finder.css
  • https://museuterrissa.cat/media/com_finder/css/finder.css
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/nivo-slider.css
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/nivo-slider.css
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/square/style.css
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/themes/square/style.css
  • https://museuterrissa.cat/media/system/js/mootools-core.js
  • https://museuterrissa.cat/media/system/js/core.js
  • https://museuterrissa.cat/media/system/js/caption.js
  • https://museuterrissa.cat/media/system/js/mootools-more.js
  • https://museuterrissa.cat/media/com_attachments/js/attachments_refresh.js
  • https://museuterrissa.cat/plugins/system/rokbox/assets/js/rokbox.js
  • https://museuterrissa.cat/libraries/gantry/js/gantry-totop.js
  • https://museuterrissa.cat/libraries/gantry/js/browser-engines.js
  • https://museuterrissa.cat/templates/rt_metropolis/js/rokmediaqueries.js
  • https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/rokmediaqueries.js
  • https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/responsive.js
  • https://museuterrissa.cat/modules/mod_roknavmenu/themes/default/js/responsive-selectbox.js
  • http://code.jquery.com/jquery-latest.min.js
  • https://museuterrissa.cat/media/com_finder/js/autocompleter.js
  • https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  • https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/jquery.noconflict.js
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/jquery.nivo.slider.js
  • https://museuterrissa.cat/images/Fa%C3%A7ana_Museu.jpg
  • https://museuterrissa.cat/images/Fa%C3%A7ana_Museu.jpg
  • https://museuterrissa.cat/cache/ais_966cfa35809de8fbb8c52fa92d38eb0b_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_966cfa35809de8fbb8c52fa92d38eb0b_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_d7c5419c4ecfd4c6261729b46495c335_450_751.jpeg
  • https://museuterrissa.cat/cache/ais_d7c5419c4ecfd4c6261729b46495c335_450_751.jpeg
  • https://museuterrissa.cat/cache/ais_0d08163bd50ae1f136ca646f289f54d9_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_0d08163bd50ae1f136ca646f289f54d9_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_8aad1823177c2ac9cc08b353da5ab4e1_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_8aad1823177c2ac9cc08b353da5ab4e1_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_33a227c0be4015576ea9c234ea8392e4_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_33a227c0be4015576ea9c234ea8392e4_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_933de0329f789a7c28063da07b1d765f_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_933de0329f789a7c28063da07b1d765f_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_3ad9ded8d96801c7fa9a83faf08d7d48_450_600.jpeg
  • https://museuterrissa.cat/cache/ais_3ad9ded8d96801c7fa9a83faf08d7d48_450_600.jpeg
  • https://museuterrissa.cat/images/minimapa.jpg
  • https://museuterrissa.cat/images/minimapa.jpg
  • https://museuterrissa.cat/images/logos-bot/diputacio_girona.png
  • https://museuterrissa.cat/images/logos-bot/diputacio_girona.png
  • https://museuterrissa.cat/images/logos-bot/cb_pirineu.png
  • https://museuterrissa.cat/images/logos-bot/cb_pirineu.png
  • https://museuterrissa.cat/images/logos-bot/el_punt.png
  • https://museuterrissa.cat/images/logos-bot/el_punt.png
  • https://museuterrissa.cat/images/logos-bot/vanguardia.png
  • https://museuterrissa.cat/images/logos-bot/vanguardia.png
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/repeat-body-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/repeat-body-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/bottom-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/bottom-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/top-image.jpg
  • https://museuterrissa.cat/templates/rt_metropolis/images/backgrounds/brown/top-image.jpg
  • https://museuterrissa.cat/images/logo.png
  • https://museuterrissa.cat/images/logo.png
  • https://museuterrissa.cat/templates/rt_metropolis/images/dark/small-arrows.png
  • https://museuterrissa.cat/templates/rt_metropolis/images/dark/small-arrows.png
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/theme...mages/loading.gif
  • https://museuterrissa.cat/modules/mod_ariimageslider/mod_ariimageslider/js/theme...mages/loading.gif
  • https://museuterrissa.cat/templates/rt_metropolis/images/dark/large-arrows.png
  • https://museuterrissa.cat/templates/rt_metropolis/images/dark/large-arrows.png
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Regular-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Regular-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Light-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-Light-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-ExtraLight-webfont.woff
  • https://museuterrissa.cat/templates/rt_metropolis/fonts/SourceSansPro-ExtraLight-webfont.woff
  • https://museuterrissa.cat/ca/#
  • https://museuterrissa.cat/ca/#
  • https://museuterrissa.cat/ca/#
  • https://museuterrissa.cat/favicon.ico
  • https://museuterrissa.cat/favicon.ico
  • https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png
  • https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png
  • Privacy advice (76)

    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://museuterrissa.cat/ca/
  • Serve all responses on HTTPS (when you are on HTTPS) (mixedContent)You need to serve all responses on HTTPS. The page have 1 response using HTTP. That is a privacy and security risk.0
    Description: You need to make sure that if you are on HTTPS, all responses are on HTTPS so that the content served are secured.
    Offenders:
  • http://code.jquery.com/jquery-latest.min.js
  • 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://museuterrissa.cat/ca/
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 4% requests that are 3rd party (2 requests with a size of 67.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 1 survelliance request 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:
  • http://code.jquery.com/jquery-latest.min.js
  • https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  • Page info

    Page info
    TitleInici - Museu de la Terrissa de Quart
    Width1350
    Height1368
    DOM elements295
    Avg DOM depth11
    Max DOM depth20
    Iframes0
    Script tags20
    Local storage0 b
    Session storage0 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
    Varnish 100  Caching
    LiteSpeed 100  Web servers
    HTTP/3 100  Miscellaneous

    Data collected using Third Party Web 0.26.2

    Cdn
    jQuery CDN
    Google CDN
    Survelliance
    Google CDN
    | 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="rt-bg2"></div>
    Render time 1.192 s
    Element render delay111 ms
    TTFB681 ms
    Resource delay336 ms
    Resource load duration65 ms
    Load time1.104 s
    URL https://museuterriss...own/top-image.jpg
    Size (width*height)730350
    DOM path
    div:eq(0) > div> div:eq(0) > div>
    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.01364 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.00314<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00260<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00142<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00138<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00128<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00094<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00085<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00068<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00058<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00044<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    0.00033<div id="ca_banner" style="bottom: 0px; background: url(&quot;https://museuterrissa.cat/modules/mod_cookiesaccept/img/przez_b.png&quot;); border-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: block;"></div>
    body > div#ca_banner
    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 144 ms.

    Event typepointerover
    Element typeIMG
    Element class name
    Event target#rt-mainbody>div.component-content>div.blog>div.items-leading>div.leading-0>p>img
    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
    38.2 ms277.5 ms1.4 ms0.1 ms1.3 ms
    https://museuterrissa.cat/media/system/js/mootools-core.js

    Forced Style And Layout Duration: 8 ms

    Invoker:  https://museuterrissa.cat/media/system/js/mootools-core.js
    Invoker Type: classic-script
    Window attribution: self

    https://museuterrissa.cat/media/system/js/mootools-more.js

    Invoker:  https://museuterrissa.cat/media/system/js/mootools-more.js
    Invoker Type: classic-script
    Window attribution: self

    https://museuterrissa.cat/plugins/system/rokbox/assets/js/rokbox.js

    Invoker:  https://museuterrissa.cat/plugins/system/rokbox/assets/js/rokbox.js
    Invoker Type: classic-script
    Window attribution: self

    http://code.jquery.com/jquery-latest.min.js

    Invoker:  http://code.jquery.com/jquery-latest.min.js
    Invoker Type: classic-script
    Window attribution: self

    https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js

    Invoker:  https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
    Invoker Type: classic-script
    Window attribution: self

    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
    Documents6
    Frames7
    JSEventListeners71
    LayoutObjects408
    MediaKeySessions0
    MediaKeys0
    Nodes1299
    Resources64
    ContextLifecycleStateObservers31
    V8PerContextDatas3
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers6
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents0
    LayoutCount122
    RecalcStyleCount210
    LayoutDuration75
    RecalcStyleDuration45
    DevToolsCommandDuration10
    ScriptDuration223
    V8CompileDuration1
    TaskDuration702
    TaskOtherDuration348
    ThreadTime1
    ProcessTime2
    JSHeapUsedSize5759808
    JSHeapTotalSize9961472
    FirstMeaningfulPaint1207
    | 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 requests57
    Total domains3
    Total transfer size1.4 MB
    Total content size2.2 MB
    Responses missing compression25
    Number of cookies2
    Third party cookies0
    Requests per response code
    20055
    3031
    4041

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b29.5 KB47.7 KB2
    css0 b57.3 KB397.3 KB12
    javascript649 B192.6 KB613.8 KB17
    image0 b1.1 MB1.1 MB21
    font0 b75.6 KB75.5 KB3
    Total649 B1.4 MB2.2 MB55

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    museuterrissa.cat5.512 s1.4 MB2.0 MB55
    code.jquery.com149 ms32.4 KB93.5 KB1
    ajax.googleapis.com171 ms33.5 KB91.2 KB1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 week1 year
    Last modified1 year11 years34 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html23.9 KB1
    css0 b0
    javascript0 b0
    image1001 B1
    font0 b0
    Total26.2 KB3

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html23.9 KB1
    css0 b0
    javascript0 b0
    image1001 B1
    font0 b0
    Total26.2 KB3
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    cdn 2
    survelliance 1
    CategoryNumber of tools
    cdn 2
    survelliance 1

    Third party requests and tools

    cdn (2 requests)
    jQuery CDN
    Google CDN
    survelliance (1 requests)
    Google CDN

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b29.5 KB47.7 KB2
    css0 b57.3 KB397.3 KB12
    javascript0 b126.7 KB429.0 KB15
    image0 b1.1 MB1.1 MB21
    font0 b75.6 KB75.5 KB3
    TotalN/A1.4 MB2.0 MB55

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b0 b0 b0
    javascript649 B65.9 KB184.8 KB2
    image0 b0 b0 b0
    font0 b0 b0 b0
    Total648 B65.9 KB184.8 KB2
    afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

    Screenshots

    afterPageCompleteCheck.png

    afterPageCompleteCheck.png

    layoutShift.png

    layoutShift.png

    largestContentfulPaint.png

    largestContentfulPaint.png