Page summary

https://www.proantic.com/

Tested 2024-10-02 01:30:11 using Chrome 116.0.5845.140 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Third party axe
| Summary | | Download Video | Download Timeline Log | Download HAR | 

Summary

MetricValue
Page metrics
Performance Score87
Total Page Transfer Size1.5 MB
Requests49
Timing metrics
TTFB [median]76 ms
First Paint [median]246 ms
Fully Loaded [median]509 ms
Google Web Vitals
TTFB [median]76 ms
First Contentful Paint (FCP) [median]246 ms
Largest Contentful Paint (LCP) [median]351 ms
Cumulative Layout Shift (CLS) [median]0.08
CPU metrics
CPU long tasks [median]1
CPU longest task duration93 ms
CPU last long task happens at150 ms
Visual Metrics
First Visual Change [median]233 ms
Speed Index [median]269 ms
Visual Complete 85% [median]333 ms
Visual Complete 99% [median]400 ms
Last Visual Change [median]433 ms
Screenshot of run 2

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange233 ms233 ms344 ms567 ms
LastVisualChange400 ms433 ms522 ms733 ms
SpeedIndex258 ms269 ms376 ms601 ms
LargestImage300 ms333 ms433 ms667 ms
Heading367 ms400 ms500 ms733 ms
LargestContentfulPaint300 ms333 ms433 ms667 ms
LastMeaningfulPaint367 ms400 ms500 ms733 ms
VisualReadiness166 ms167 ms178 ms200 ms
VisualComplete85300 ms333 ms433 ms667 ms
VisualComplete95367 ms400 ms500 ms733 ms
VisualComplete99367 ms400 ms500 ms733 ms
Google Web Vitals
Time To First Byte (TTFB)73 ms76 ms191 ms424 ms
Largest Contentful Paint (LCP)295 ms351 ms436 ms662 ms
First Contentful Paint (FCP)227 ms246 ms347 ms569 ms
Cumulative Layout Shift (CLS)0.0420.08040.07010.088
More metrics
firstPaint227 ms246 ms347 ms569 ms
loadEventEnd445 ms458 ms556 ms765 ms
CPU
Total Blocking Time0 ms0 ms0 ms0 ms
Max Potential FID0 ms0 ms0 ms0 ms
CPU long tasks 1111
CPU last long task happens at133 ms150 ms255 ms481 ms
| Waterfall | | Download HAR | 

Waterfall

Run 2 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.2 sCPU Long Task duration 93 ms
0.3 sFirst Visual Change 233 msFirst Contentful Paint 246 ms
0.4 sLayout Shift 0.07965 328 msVisual Complete 85% 333 msLargest Image 333 msDOM Content Loaded Time 345 msLCP <IMG> 351 msLast Visual Change 400 msVisual Complete 95% 400 msVisual Complete 99% 400 msHeading 400 ms
0.5 sLayout Shift 0.00075 410 msPage Load Time 458 ms
| 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.0.2.

I am the coach

Coach score

Performance advice (87)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 3 blocking requests and 1 in body parser blocking (1 JavaScript and 3 CSS). There are 1 potentially render blocking requests. You need to verify if it is render blocking: https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR89
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path.
Offenders:
  • https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
  • Avoid using Google Tag Manager. (googleTagManager)The page is using Google Tag Manager, this is a performance risk since non-tech users can add JavaScript to your page.0
    Description: Google Tag Manager makes it possible for non tech users to add scripts to your page that will downgrade performance.
    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) You can add fetchPriority="high" to the image to increase the load priority in Chrome. The image is lazy loaded using the lazy attribute, you should avoid that on the LCP image.75
    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.
    Avoid CPU Long Tasks (longTasks)The page has 1 CPU long task with the total of 82 ms. The total blocking time is 0 ms and 1 long task before first contentful paint with total time of 82 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 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 1 request that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 1.2 kB the next access.90
    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://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css
  • 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://fonts.googleapis.com/css...oogleapis.com/css
  • https://www.proantic.com/css/normalize_minify.css+webflow_minify.css.pagespeed.cc.G2AX989HiO.css
  • https://www.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css+fontawesome...cf.ioXOhovDxv.css
  • https://www.proantic.com/css/A.proantic.webflow.024.css,q20240916183748.pagespeed.cf._nnDJvOwdZ.css
  • https://www.proantic.com/ico/logo_proantic_2024.png
  • https://www.proantic.com/ico/englishflag.png
  • https://www.proantic.com/ico/33flag20px.jpg
  • https://www.proantic.com/ico/44flag20px.png
  • https://www.proantic.com/ico/39flag20px.jpg
  • https://www.proantic.com/ico/line.png
  • https://www.proantic.com/ico/facebook_sm.png
  • https://www.proantic.com/ico/pinterest_sm.png
  • https://www.proantic.com/ico/INSTAGRAM-LOGO-SM.png
  • https://www.proantic.com/ico/logo_proantic4a_sm_33.png
  • https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR
  • https://www.proantic.com/galerie/bertrand-klein/indexImage.jpg
  • https://www.proantic.com/galerie/galeriefc/img/small/1362948-main-667c28b6e9c73.jpg
  • https://www.proantic.com/galerie/bilsceramiques/img/small/1407905-main-66f69f8a85370.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1370452-main-668ee8d419ccc.jpg
  • https://www.proantic.com/galerie/jullion/img/small/1319653-main-661d5e1a10254.jpg
  • https://www.proantic.com/galerie/serignan/img/small/1407731-main-66f666bbd3027.jpg
  • https://www.proantic.com/galerie/phc/img/small/1407185-main-66fa79381c497.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1086410-main-63f5ff2853c59.jpg
  • https://www.proantic.com/galerie/antiquites-sordes/img/small/1183746-main-64ea05b96dc6c.jpg
  • https://www.proantic.com/galerie/des-pulls-dans-ma-commode/img/small/1394675-main-66d5f1006b848.jpg
  • https://www.proantic.com/galerie/titanfineart/img/small/1329888-main-66335974e61f3.jpg
  • https://www.proantic.com/galerie/galerieastree/img/small/1376340-main-669be836c5e52.jpg
  • https://www.proantic.com/galerie/antichita-castelbarco/img/small/1407192-main-66f51eed16dea.jpg
  • https://www.proantic.com/galerie/noblessedesgrandssiecles/img/small/1404893-main-66fb02ea295b8.jpg
  • https://www.proantic.com/galerie/violondingres/img/small/1364417-main-667ee71b6748c.jpg
  • https://www.proantic.com/galerie/bilsceramiques/img/small/1407886-main-66f693e8b557d.jpg
  • https://www.proantic.com/galerie/galerieastree/img/small/1408272-main-66f6f61292579.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1250477-main-65808e976978c.jpg
  • https://www.proantic.com/galerie/laurybailly/img/small/1333300-main-663a3de71aea2.jpg
  • https://www.proantic.com/galerie/philippecote/img/small/1406899-main-66f4293398c5a.jpg
  • https://www.proantic.com/galerie/laurybailly/img/small/1338284-main-66470c5a3a196.jpg
  • https://www.proantic.com/galerie/phc/img/small/1095103-main-65ad6a38e8488.jpg
  • https://www.proantic.com/css/jquery-ui-1_10_3-minify.css
  • https://www.proantic.com/ico/proantic_ico_new_6.png
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 71.6 kB and uncompressed size is 401.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://fonts.googleapis.com/css...oogleapis.com/css 3.4 KB67.0 KB
    https://www.proantic.com/css/normalize_minify.css+webflow_minify.css.pagespeed.cc.G2AX989HiO.css 8.6 KB32.5 KB
    https://www.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css+fontawesome...cf.ioXOhovDxv.css 38.6 KB204.6 KB
    https://www.proantic.com/css/A.proantic.webflow.024.css,q20240916183748.pagespeed.cf._nnDJvOwdZ.css 13.0 KB62.1 KB
    https://www.proantic.com/css/jquery-ui-1_10_3-minify.css 5.0 KB24.3 KB
    https://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css 1.2 KB2.0 KB
    Avoid too many fonts (fewFonts)The page has 7 font requests. Do you really need them? What value does the fonts give the user?30
    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/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://www.proantic.com/webfonts/fa-thin-100.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwiPGQ.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2
  • https://fonts.gstatic.com/s/cinzel/v23/8vIJ7ww63mVu7gt79mT7.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 132.1 kB and the uncompressed size is 382.9 kB. This is quite large. 50
    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://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js 30.9 KB87.4 KB
    https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR 98.1 KB286.5 KB
    Make each CSS response small (optimalCssSize)https://www.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css+fontawesome.min.css+regular.min.css+thin.min.css+sharp-solid.min.css+light.min.css,Mcc.iqUiudq9r-.css.pagespeed.cf.ioXOhovDxv.css size is 39.6 kB (39566) 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://www.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css+fontawesome...cf.ioXOhovDxv.css 38.6 KB204.6 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://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR
  • Best practice advice (81)

    TitleAdviceScore
    Meta description (metaDescription)The meta description is too long. It has 208 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 6 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 20% requests to third party domains (10 requests and 313.9 kB). First party is 39 requests and 1.2 MB. The regex .*proantic.* 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 47 responses that sets both a max-age and expires header. There are 49 responses that sets a server header. 4
    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://www.proantic.com/
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://www.proantic.com/css/normalize_minify.css+webflow_minify.css.pagespeed.cc.G2AX989HiO.css
  • https://www.proantic.com/css/normalize_minify.css+webflow_minify.css.pagespeed.cc.G2AX989HiO.css
  • https://www.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css+fontawesome...cf.ioXOhovDxv.css
  • https://www.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css+fontawesome...cf.ioXOhovDxv.css
  • https://www.proantic.com/css/A.proantic.webflow.024.css,q20240916183748.pagespeed.cf._nnDJvOwdZ.css
  • https://www.proantic.com/css/A.proantic.webflow.024.css,q20240916183748.pagespeed.cf._nnDJvOwdZ.css
  • https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
  • https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
  • https://www.proantic.com/ico/logo_proantic_2024.png
  • https://www.proantic.com/ico/logo_proantic_2024.png
  • https://www.proantic.com/ico/englishflag.png
  • https://www.proantic.com/ico/englishflag.png
  • https://www.proantic.com/ico/33flag20px.jpg
  • https://www.proantic.com/ico/33flag20px.jpg
  • https://www.proantic.com/ico/44flag20px.png
  • https://www.proantic.com/ico/44flag20px.png
  • https://www.proantic.com/ico/39flag20px.jpg
  • https://www.proantic.com/ico/39flag20px.jpg
  • https://www.proantic.com/ico/line.png
  • https://www.proantic.com/ico/line.png
  • https://www.proantic.com/ico/facebook_sm.png
  • https://www.proantic.com/ico/facebook_sm.png
  • https://www.proantic.com/ico/pinterest_sm.png
  • https://www.proantic.com/ico/pinterest_sm.png
  • https://www.proantic.com/ico/INSTAGRAM-LOGO-SM.png
  • https://www.proantic.com/ico/INSTAGRAM-LOGO-SM.png
  • https://www.proantic.com/ico/logo_proantic4a_sm_33.png
  • https://www.proantic.com/ico/logo_proantic4a_sm_33.png
  • https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR
  • https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR
  • https://www.proantic.com/galerie/bertrand-klein/indexImage.jpg
  • https://www.proantic.com/galerie/bertrand-klein/indexImage.jpg
  • https://www.proantic.com/galerie/galeriefc/img/small/1362948-main-667c28b6e9c73.jpg
  • https://www.proantic.com/galerie/galeriefc/img/small/1362948-main-667c28b6e9c73.jpg
  • https://www.proantic.com/galerie/bilsceramiques/img/small/1407905-main-66f69f8a85370.jpg
  • https://www.proantic.com/galerie/bilsceramiques/img/small/1407905-main-66f69f8a85370.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1370452-main-668ee8d419ccc.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1370452-main-668ee8d419ccc.jpg
  • https://www.proantic.com/galerie/jullion/img/small/1319653-main-661d5e1a10254.jpg
  • https://www.proantic.com/galerie/jullion/img/small/1319653-main-661d5e1a10254.jpg
  • https://www.proantic.com/galerie/serignan/img/small/1407731-main-66f666bbd3027.jpg
  • https://www.proantic.com/galerie/serignan/img/small/1407731-main-66f666bbd3027.jpg
  • https://www.proantic.com/galerie/phc/img/small/1407185-main-66fa79381c497.jpg
  • https://www.proantic.com/galerie/phc/img/small/1407185-main-66fa79381c497.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1086410-main-63f5ff2853c59.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1086410-main-63f5ff2853c59.jpg
  • https://www.proantic.com/galerie/antiquites-sordes/img/small/1183746-main-64ea05b96dc6c.jpg
  • https://www.proantic.com/galerie/antiquites-sordes/img/small/1183746-main-64ea05b96dc6c.jpg
  • https://www.proantic.com/galerie/des-pulls-dans-ma-commode/img/small/1394675-main-66d5f1006b848.jpg
  • https://www.proantic.com/galerie/des-pulls-dans-ma-commode/img/small/1394675-main-66d5f1006b848.jpg
  • https://www.proantic.com/galerie/titanfineart/img/small/1329888-main-66335974e61f3.jpg
  • https://www.proantic.com/galerie/titanfineart/img/small/1329888-main-66335974e61f3.jpg
  • https://www.proantic.com/galerie/galerieastree/img/small/1376340-main-669be836c5e52.jpg
  • https://www.proantic.com/galerie/galerieastree/img/small/1376340-main-669be836c5e52.jpg
  • https://www.proantic.com/galerie/antichita-castelbarco/img/small/1407192-main-66f51eed16dea.jpg
  • https://www.proantic.com/galerie/antichita-castelbarco/img/small/1407192-main-66f51eed16dea.jpg
  • https://www.proantic.com/galerie/noblessedesgrandssiecles/img/small/1404893-main-66fb02ea295b8.jpg
  • https://www.proantic.com/galerie/noblessedesgrandssiecles/img/small/1404893-main-66fb02ea295b8.jpg
  • https://www.proantic.com/galerie/violondingres/img/small/1364417-main-667ee71b6748c.jpg
  • https://www.proantic.com/galerie/violondingres/img/small/1364417-main-667ee71b6748c.jpg
  • https://www.proantic.com/galerie/bilsceramiques/img/small/1407886-main-66f693e8b557d.jpg
  • https://www.proantic.com/galerie/bilsceramiques/img/small/1407886-main-66f693e8b557d.jpg
  • https://www.proantic.com/galerie/galerieastree/img/small/1408272-main-66f6f61292579.jpg
  • https://www.proantic.com/galerie/galerieastree/img/small/1408272-main-66f6f61292579.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1250477-main-65808e976978c.jpg
  • https://www.proantic.com/galerie/lestresorsdegamaliel/img/small/1250477-main-65808e976978c.jpg
  • https://www.proantic.com/galerie/laurybailly/img/small/1333300-main-663a3de71aea2.jpg
  • https://www.proantic.com/galerie/laurybailly/img/small/1333300-main-663a3de71aea2.jpg
  • https://www.proantic.com/galerie/philippecote/img/small/1406899-main-66f4293398c5a.jpg
  • https://www.proantic.com/galerie/philippecote/img/small/1406899-main-66f4293398c5a.jpg
  • https://www.proantic.com/galerie/laurybailly/img/small/1338284-main-66470c5a3a196.jpg
  • https://www.proantic.com/galerie/laurybailly/img/small/1338284-main-66470c5a3a196.jpg
  • https://www.proantic.com/galerie/phc/img/small/1095103-main-65ad6a38e8488.jpg
  • https://www.proantic.com/galerie/phc/img/small/1095103-main-65ad6a38e8488.jpg
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://www.proantic.com/webfonts/fa-thin-100.woff2
  • https://www.proantic.com/webfonts/fa-thin-100.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwiPGQ.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwiPGQ.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2
  • https://fonts.gstatic.com/s/cinzel/v23/8vIJ7ww63mVu7gt79mT7.woff2
  • https://fonts.gstatic.com/s/cinzel/v23/8vIJ7ww63mVu7gt79mT7.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2
  • https://www.proantic.com/css/jquery-ui-1_10_3-minify.css
  • https://www.proantic.com/css/jquery-ui-1_10_3-minify.css
  • https://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css
  • https://www.proantic.com/ico/proantic_ico_new_6.png
  • https://www.proantic.com/ico/proantic_ico_new_6.png
  • 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://www.proantic.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://www.proantic.com/
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 20% requests that are 3rd party (10 requests with a size of 313.9 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 9 survelliance requests and uses 3 survelliance tools. The page do 1 tag-manager request and uses 1 tag-manager tool. The page do 1 marketing request and uses 1 marketing 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://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
  • https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwiPGQ.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2
  • https://fonts.gstatic.com/s/cinzel/v23/8vIJ7ww63mVu7gt79mT7.woff2
  • https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2
  • https://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css
  • Page info

    Page info
    TitleProantic: Achetez des antiquités et objets d'art présentés par des
    Width1350
    Height8583
    DOM elements755
    Avg DOM depth8
    Max DOM depth12
    Iframes0
    Script tags7
    Local storage0 b
    Session storage0 b
    Network Information API4g
    Resource Hints
    preconnect
    https://fonts.gstatic.com/

    Technologies used to build the page.

    Data collected using Wappalyzerversion 6.10.66.  Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyser find more information about technologies used.

    TechnologyConfidenceCategory
    Nginx 100  Web servers Reverse proxies
    Amazon Web Services 100  PaaS
    HSTS 100  Security
    Google PageSpeed 1.13.35.2100  Caching Web server extensions Performance
    Amazon CloudFront 100  CDN
    HTTP/3 100  Miscellaneous

    Data collected using Third Party Web 0.24.0

    Cdn
    Google Fonts
    Google CDN
    Survelliance
    Google Fonts
    Google CDN
    Google Tag Manager
    Tag-manager
    Google Tag Manager
    Marketing
    Mailchimp
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Visual Elements | 

    Data from run 2

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)76 ms
    First Contentful Paint (FCP)246 ms
    Largest Contentful Paint (LCP)351 ms
    Cumulative Layout Shift (CLS)0.08
    Total Blocking Time (TBT)0 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP0
    Time spent in recalculate style before FCP0 ms
    Extra timings
    TTFB76 ms
    First Paint246 ms
    Load Event End458 ms
    Fully loaded509 ms

    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 typeIMG
    Element/tag<img loading="lazy" src="https://www.proantic.com/galerie/bilsceramiques/img/small/1407886-main-66f693e8b557d.jpg" alt="Albarello en majolique de Venise - XVIe siècle" class="img-selection">
    Render time 351 ms
    Elements that needed recalculate style before LCP741
    Time spent in recalculate style before LCP29.578 ms
    Load time262 ms
    URL https://www.proantic...66f693e8b557d.jpg
    Size (width*height)58960
    DOM path
    div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(0) > div > a > img> div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(0) > div > a > img>
    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.08040 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.07965<div class="overlay-selection nouveautes accueil"></div>,<div class="overlay-selection nouveautes accueil"></div>,<div class="overlay-selection nouveautes accueil"></div>,<div class="w-col w-col-4 columns-nouveautes"></div>,<div class="w-col w-col-4 columns-nouveautes"></div>
    body > div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(0) > div > div,body > div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(1) > div > div,body > div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(2) > div > div,body > div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(3),body > div#section-selection > div:eq(1) > div > div:eq(0) > div:eq(5)
    0.00075<div class="w-dropdown-nav nav-menu-hover nav-menu-hover-meta" onclick=""></div>,<div class="nouveau-curr-flag flex navbar-big-screen"></div>,<div class="w-dropdown-nav nav-menu-hover nav-menu-hover-meta" data-menu="antiquaire"></div>,<div class="w-dropdown-nav nav-menu-hover nav-menu-hover-meta" onclick=""></div>,<div class="w-dropdown-nav magazine nav-menu-hover nav-menu-hover-meta"></div>
    body > div#totop > div > div#new-menu-top > nav > div:eq(6),body > div#totop > div > div#new-menu-top > div:eq(0) > div:eq(3),body > div#totop > div > div#new-menu-top > nav > div:eq(7),body > div#totop > div > div#new-menu-top > nav > div:eq(3),body > div#totop > div > div#new-menu-top > nav > div:eq(8)
    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.

    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.

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (1407886-main-66f693e8b557d.jpg)333 ms 76 410 268 268
    <img loading="lazy" src="https://www.proantic.com/galerie/bilsceramiques/img/small/1407886-main-66f693e8b557d.jpg" alt="Albarello en majolique de Venise - XVIe siècle" class="img-selection">
    Heading400 ms 75 180 1200 20
    <h1 class="soustitre-center h5-style " style=""></h1>
    LargestContentfulPaint (1407886-main-66f693e8b557d.jpg)333 ms 76 410 268 268
    <img loading="lazy" src="https://www.proantic.com/galerie/bilsceramiques/img/small/1407886-main-66f693e8b557d.jpg" alt="Albarello en majolique de Venise - XVIe siècle" class="img-selection">
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests49
    Total domains6
    Total transfer size1.5 MB
    Total content size2.1 MB
    Responses missing compression9
    Number of cookies0
    Third party cookies0
    Requests per response code
    20049

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b20.0 KB114.0 KB1
    css0 b69.9 KB392.4 KB6
    javascript0 b129.0 KB373.9 KB2
    image0 b623.3 KB612.3 KB33
    font0 b664.6 KB662.6 KB7
    Total0 b1.5 MB2.1 MB49

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.proantic.com2.007 s1.2 MB1.5 MB39
    fonts.googleapis.com48 ms3.4 KB67.0 KB1
    ajax.googleapis.com35 ms30.9 KB87.4 KB1
    www.googletagmanager.com54 ms98.1 KB286.5 KB1
    fonts.gstatic.com96 ms172.9 KB171.8 KB6
    cdn-images.mailchimp.com20 ms1.2 KB2.0 KB1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 week1 year
    Last modified0 seconds22 weeks15 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image88.5 KB1
    font0 b0
    Total88.5 KB1

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image88.5 KB1
    font0 b0
    Total88.5 KB1

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    311

    Render information

    | CPU Long Tasks | First Input Delay | CPU Time Spent | CPU Time Spent Per Request | CPU Time Per Tool/Domain | 

    CPU

    Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.

    Long Tasks

    Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.

    TypeQuantityTotal duration (ms)
    Total Blocking Time 0
    Max Potential First Input Delay 0
    Long Tasks before First Paint193
    Long Tasks before First Contentful Paint193
    Long Tasks before Largest Contentful Paint193
    Long Tasks after Load Event End00
    Total Long Tasks193

    CPU last long task happened at 150 ms

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown15093window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML44
    styleLayout127
    paintCompositeRender8
    scriptParseCompile1
    scriptEvaluation103
    garbageCollection9
    other164
    Events (ms)
    RunTask132
    Layout94
    v8.run52
    ParseHTML34
    UpdateLayoutTree33
    FunctionCall24
    RunMicrotasks22
    ParseAuthorStyleSheet10

    Time spent per request

    URLCPU time (ms)
    https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR70
    https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js33

    CPU time spent

    Tool/domainTime (ms)
    Google Tag Manager70.4
    Google CDN32.7
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.24.0.

    CategoryRequests
    cdn 8
    survelliance 9
    tag-manager 1
    marketing 1
    CategoryNumber of tools
    cdn 2
    survelliance 3
    tag-manager 1
    marketing 1

    Third party requests and tools

    cdn (8 requests)
    Google Fonts
    Google CDN
    survelliance (9 requests)
    Google Fonts
    Google CDN
    Google Tag Manager
    tag-manager (1 requests)
    Google Tag Manager
    marketing (1 requests)
    Mailchimp

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b20.0 KB114.0 KB1
    css0 b65.2 KB323.5 KB4
    javascript0 b0 b0 b0
    image0 b623.3 KB612.3 KB33
    font0 b491.6 KB490.8 KB1
    TotalN/A1.2 MB1.5 MB39

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b4.6 KB68.9 KB2
    javascript0 b129.0 KB373.9 KB2
    image0 b0 b0 b0
    font0 b172.9 KB171.8 KB6
    TotalN/A306.6 KB614.6 KB10

    Axe

    Axe is an accessibility testing engine for websites and other HTML-based user interfaces. Tested using axe-core version 4.7.2. Read more about axe-core .

    Violations

    Median number of violations for all the runs. Check each individual run to see all the violations.

    TypeViolations (median)
    Critical 1
    Serious2
    Moderate2
    Minor0