Run 2 summary

https://www.proantic.com/magazine/

Tested 2025-04-02 01:35:21 using Chrome 132.0.6834.83 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Third partyScreenshotsaxe

Summary

MetricValue
Page metrics
Performance score94
Total page size368.3 KB
Requests21
Timing metrics
TTFB295 ms
First Paint490 ms
Fully Loaded591 ms
Google Web Vitals
TTFB295 ms
First Contentful Paint (FCP) 490 ms
Largest Contentful Paint (LCP) 490 ms
Cumulative Layout Shift (CLS) 0.01
CPU metrics
CPU long tasks1
CPU last long task happens at365 ms
Visual Metrics
First Visual Change500 ms
Speed Index548 ms
Visual Complete 85%566 ms
Visual Complete 99%600 ms
Last Visual Change600 ms
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.4 sCPU Long Task duration 55 ms
0.5 sDOM Content Loaded Time 430 msFirst Contentful Paint 490 msLCP <IMG> 490 msFirst Visual Change 500 ms
0.6 sLayout Shift 0.00001 501 msLayout Shift 0.00040 531 msPage Load Time 560 msVisual Complete 85% 566 msLayout Shift 0.01216 577 msFully Loaded 591 msLast Visual Change 600 msVisual Complete 95% 600 msVisual Complete 99% 600 msLargest Image 600 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.1.1.

I am the coach

Coach score

Performance advice (94)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 5 blocking requests and 2 in body parser blocking (2 JavaScript and 5 CSS).80
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://www.proantic.com/magazine/wp-content/themes/olsen-light/js/scripts.js,qv....jm.YPk7tHUcXX.js
  • https://stats.wp.com/e-202514.js
  • Inline CSS for faster first render (inlineCss)The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.95
    Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
    Avoid CPU Long Tasks (longTasks)The page has 1 CPU long task with the total of 55 ms. The total blocking time is 0 ms and 1 long task before first contentful paint with total time of 55 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 177 B 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://pixel.wp.com/g.gif...ixel.wp.com/g.gif
  • Long cache headers is good (cacheHeadersLong)The page has 10 requests that have a shorter cache time than 30 days (but still a cache time).90
    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://www.proantic.com/magazine/wp-includes/css/dist/block-library/A.style.min...cf.-GTKN38myC.css
  • https://www.proantic.com/magazine/wp-includes/js/mediaelement/mediaelementplayer...er-legacy.min.css
  • https://www.proantic.com/magazine/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=6.7
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/vendor/olsen-ico...cf.B48meyexaI.css
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/A.style.css,qver...cf.yHt3onmplW.css
  • https://www.proantic.com/magazine/wp-content/uploads/2023/12/proantic_ico_256.png
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/js/scripts.js,qv....jm.YPk7tHUcXX.js
  • https://www.proantic.com/magazine/wp-includes/js/wp-emoji-release.min.js?ver=6.7
  • https://www.proantic.com/favicon.ico
  • Avoid too many fonts (fewFonts)The page has 5 font requests. Do you really need them? What value does the fonts give the user?50
    Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
    Offenders:
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/vendor/olsen-ico...olsen-icons.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://fonts.gstatic.com/s/lora/v35/0QIvMX1D_JOuMwr7Iw.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAXC-q.woff2
  • Make each CSS response small (optimalCssSize)https://www.proantic.com/magazine/wp-includes/css/dist/block-library/A.style.min.css,qver=6.7.pagespeed.cf.-GTKN38myC.css size is 15.9 kB (15896) 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/magazine/wp-includes/css/dist/block-library/A.style.min...cf.-GTKN38myC.css 15.5 KB111.9 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://fonts.googleapis.com/css...oogleapis.com/css
  • Best practice advice (85)

    TitleAdviceScore
    Avoid too many third party requests (thirdParty)The page do 48% requests to third party domains (10 requests and 266.4 kB). First party is 11 requests and 110.7 kB. The page transfer more bytes from third party domains (266.4 kB) then first party (110.7 kB). The regex .*proantic.* was used to calculate first/third party requests.0
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 19 responses that sets both a max-age and expires header. There are 21 responses that sets a server header. 60
    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/magazine/
  • https://www.proantic.com/magazine/wp-includes/css/dist/block-library/A.style.min...cf.-GTKN38myC.css
  • https://www.proantic.com/magazine/wp-includes/css/dist/block-library/A.style.min...cf.-GTKN38myC.css
  • https://www.proantic.com/magazine/wp-includes/js/mediaelement/mediaelementplayer...er-legacy.min.css
  • https://www.proantic.com/magazine/wp-includes/js/mediaelement/mediaelementplayer...er-legacy.min.css
  • https://www.proantic.com/magazine/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=6.7
  • https://www.proantic.com/magazine/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=6.7
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://fonts.googleapis.com/css...oogleapis.com/css
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/vendor/olsen-ico...cf.B48meyexaI.css
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/vendor/olsen-ico...cf.B48meyexaI.css
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/A.style.css,qver...cf.yHt3onmplW.css
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/A.style.css,qver...cf.yHt3onmplW.css
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-a...67d6e4870d6e8.jpg
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-a...67d6e4870d6e8.jpg
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-d...-03-24-154313.png
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-d...-03-24-154313.png
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/preview__...1677_document.jpg
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/preview__...1677_document.jpg
  • https://www.proantic.com/magazine/wp-content/uploads/2023/12/proantic_ico_256.png
  • https://www.proantic.com/magazine/wp-content/uploads/2023/12/proantic_ico_256.png
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/js/scripts.js,qv....jm.YPk7tHUcXX.js
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/js/scripts.js,qv....jm.YPk7tHUcXX.js
  • https://stats.wp.com/e-202514.js
  • https://stats.wp.com/e-202514.js
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/vendor/olsen-ico...olsen-icons.woff2
  • https://www.proantic.com/magazine/wp-content/themes/olsen-light/vendor/olsen-ico...olsen-icons.woff2
  • https://pixel.wp.com/g.gif...ixel.wp.com/g.gif
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://fonts.gstatic.com/s/lora/v35/0QIvMX1D_JOuMwr7Iw.woff2
  • https://fonts.gstatic.com/s/lora/v35/0QIvMX1D_JOuMwr7Iw.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAXC-q.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAXC-q.woff2
  • https://www.proantic.com/magazine/wp-includes/js/wp-emoji-release.min.js?ver=6.7
  • https://www.proantic.com/magazine/wp-includes/js/wp-emoji-release.min.js?ver=6.7
  • https://www.proantic.com/favicon.ico
  • https://www.proantic.com/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://www.proantic.com/magazine/
  • 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/magazine/
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 48% requests that are 3rd party (10 requests with a size of 266.4 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 5 survelliance requests and uses 1 survelliance tool. The page do 3 hosting requests and uses 1 hosting tool. The page do 2 analytics requests and uses 1 analytics 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://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-a...67d6e4870d6e8.jpg
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-d...-03-24-154313.png
  • https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/preview__...1677_document.jpg
  • https://stats.wp.com/e-202514.js
  • https://pixel.wp.com/g.gif...ixel.wp.com/g.gif
  • https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2
  • https://fonts.gstatic.com/s/lora/v35/0QIvMX1D_JOuMwr7Iw.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2
  • https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAXC-q.woff2
  • Page info

    Page info
    TitleLe Magazine de Proantic - Magazine d'art et expositions
    GeneratorWordPress 6.7
    Width1350
    Height8701
    DOM elements472
    Avg DOM depth13
    Max DOM depth18
    Iframes0
    Script tags6
    Local storage0 b
    Session storage94 B
    Network Information API4g
    Resource Hints
    dns-prefetch
    https://stats.wp.com/
    https://v0.wordpress.com/
    https://i0.wp.com/

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.66. 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.7100  CMS Blogs
    MySQL 100  Databases
    PHP 100  Programming languages
    Nginx 100  Web servers Reverse proxies
    HSTS 100  Security
    Google PageSpeed 1.13.35.2100  Caching Web server extensions Performance
    HTTP/3 100  Miscellaneous

    Data collected using Third Party Web 0.26.2

    Cdn
    Google Fonts
    Survelliance
    Google Fonts
    Hosting
    WordPress
    Analytics
    WordPress Site Stats
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | Visual Elements | Metrics from CDP | 

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)295 ms
    First Contentful Paint (FCP)490 ms
    Largest Contentful Paint (LCP)490 ms
    Cumulative Layout Shift (CLS)0.01
    Total Blocking Time (TBT)0 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP559
    Time spent in recalculate style before FCP42.16 ms
    Extra timings
    TTFB295 ms
    First Paint490 ms
    Load Event End560 ms
    Fully loaded591 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 width="720" height="471" src="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?resize=720%2C471&amp;ssl=1" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" itemprop="image" decoding="async" fetchpriority="high" data-attachment-id="17526" data-permalink="https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/1509721-alb-67d6e4870d6e8/" data-orig-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=1200%2C947&amp;ssl=1" data-orig-size="1200,947" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Paire de Vases&nbsp;de Théodore Deck" data-image-description="" data-image-caption="<p>Paire de Vases&nbsp;de Théodore Deck.<br /> (c) DS Arts et Antiquités, Proantic</p> " data-medium-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=300%2C237&amp;ssl=1" data-large-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=665%2C525&amp;ssl=1">
    Render time 490 ms
    Element render delay144 ms
    TTFB295 ms
    Resource delay10 ms
    Resource load duration41 ms
    Elements that needed recalculate style before LCP559
    Time spent in recalculate style before LCP42.16 ms
    Load time381 ms
    URL https://i0.wp.com/ww...67d6e4870d6e8.jpg
    Size (width*height)155142
    DOM path
    div#page > div:eq(1) > div > div > div#site-content > div > div:eq(0) > main#content > div:eq(0) > div#inner-content > article#entry-17525 > div:eq(2) > a > img> div#page > div:eq(1) > div > div > div#site-content > div > div:eq(0) > main#content > div:eq(0) > div#inner-content > article#entry-17525 > div:eq(2) > 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.01258 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.01216,<p class="tagline"></p>,<div class="site-bar"></div>,<div id="site-content"></div>
    body > div#page > div:eq(1) > div > div > header#masthead > div:eq(0) > div > a > #text,body > div#page > div:eq(1) > div > div > header#masthead > div:eq(0) > p,body > div#page > div:eq(1) > div > div > header#masthead > div:eq(1),body > div#page > div:eq(1) > div > div > div#site-content
    0.00040<li class="cat-item cat-item-298"></li>,,<li class="cat-item cat-item-297"></li>,<li class="cat-item cat-item-180"></li>,<li class="cat-item cat-item-66"></li>
    body > div#page > div:eq(1) > div > div > div#site-content > div > div:eq(1) > div > aside#categories-5 > ul > li:eq(3),body > div#page > div:eq(1) > div > div > header#masthead > div:eq(1) > nav > ul#menu-menu-horizontal-top > #text:eq(3),body > div#page > div:eq(1) > div > div > div#site-content > div > div:eq(1) > div > aside#categories-5 > ul > li:eq(1),body > div#page > div:eq(1) > div > div > div#site-content > div > div:eq(1) > div > aside#categories-5 > ul > li:eq(4),body > div#page > div:eq(1) > div > div > div#site-content > div > div:eq(1) > div > aside#categories-5 > ul > li:eq(2)
    0.00001<button class="searchsubmit" type="submit"></button>
    body > div#page > div:eq(1) > div > div > div#site-content > div > div:eq(1) > div > aside#search-4 > form > div > button
    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
    20 ms66 ms54 ms0 ms54 ms
    https://www.proantic.com/magazine/

    Invoker:  https://www.proantic.com/magazine/
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    10 ms54.2 ms21.8 ms20.3 ms1.5 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
    Documents4
    Frames1
    JSEventListeners8
    LayoutObjects912
    MediaKeySessions0
    MediaKeys0
    Nodes1805
    Resources47
    ContextLifecycleStateObservers12
    V8PerContextDatas3
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers4
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents0
    LayoutCount9
    RecalcStyleCount8
    LayoutDuration84
    RecalcStyleDuration52
    DevToolsCommandDuration42
    ScriptDuration23
    V8CompileDuration1
    TaskDuration310
    TaskOtherDuration109
    ThreadTime0
    ProcessTime0
    JSHeapUsedSize2075672
    JSHeapTotalSize3559424
    FirstMeaningfulPaint490

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (1509721-alb-67d6e4870d6e8.jpg?resize=720%2C471&ssl=1)600 ms 170 392 663 434
    <img width="720" height="471" src="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?resize=720%2C471&amp;ssl=1" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" itemprop="image" decoding="async" fetchpriority="high" data-attachment-id="17526" data-permalink="https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/1509721-alb-67d6e4870d6e8/" data-orig-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=1200%2C947&amp;ssl=1" data-orig-size="1200,947" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Paire de Vases&nbsp;de Théodore Deck" data-image-description="" data-image-caption="<p>Paire de Vases&nbsp;de Théodore Deck.<br /> (c) DS Arts et Antiquités, Proantic</p> " data-medium-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=300%2C237&amp;ssl=1" data-large-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=665%2C525&amp;ssl=1">
    LargestContentfulPaint (1509721-alb-67d6e4870d6e8.jpg?resize=720%2C471&ssl=1)600 ms 170 392 663 434
    <img width="720" height="471" src="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?resize=720%2C471&amp;ssl=1" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" itemprop="image" decoding="async" fetchpriority="high" data-attachment-id="17526" data-permalink="https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/1509721-alb-67d6e4870d6e8/" data-orig-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=1200%2C947&amp;ssl=1" data-orig-size="1200,947" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Paire de Vases&nbsp;de Théodore Deck" data-image-description="" data-image-caption="<p>Paire de Vases&nbsp;de Théodore Deck.<br /> (c) DS Arts et Antiquités, Proantic</p> " data-medium-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=300%2C237&amp;ssl=1" data-large-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=665%2C525&amp;ssl=1">
    | 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 requests21
    Total domains6
    Total transfer size368.3 KB
    Total content size618.9 KB
    Responses missing compression10
    Number of cookies0
    Third party cookies0
    Requests per response code
    20021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b13.0 KB71.6 KB1
    css0 b34.1 KB210.4 KB6
    javascript0 b9.4 KB27.9 KB3
    image0 b185.0 KB183.1 KB5
    font0 b125.3 KB124.9 KB5
    favicon0 b1.4 KB1.1 KB1
    Total0 b368.3 KB618.9 KB21

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.proantic.com649 ms108.1 KB337.1 KB11
    fonts.googleapis.com74 ms2.3 KB21.4 KB1
    i0.wp.com107 ms148.4 KB147.0 KB3
    stats.wp.com43 ms2.9 KB7.2 KB1
    pixel.wp.com31 ms177 B50 B1
    fonts.gstatic.com177 ms106.4 KB106.2 KB4

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 week2 years
    Last modified0 seconds3 weeks5 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image0 b0
    font0 b0
    favicon1.4 KB1
    Total1.4 KB1

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript5.3 KB1
    image177 B1
    font106.4 KB4
    favicon1.4 KB1
    Total113.2 KB7

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    520

    Render information

    CPU Long Tasks | 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 Paint155
    Long Tasks before First Contentful Paint155
    Long Tasks before Largest Contentful Paint155
    Long Tasks after Load Event End00
    Total Long Tasks155

    CPU last long task happened at 365 ms

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown36555window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML29
    styleLayout135
    paintCompositeRender6
    scriptParseCompile1
    scriptEvaluation30
    garbageCollection0
    other87
    Events (ms)
    Layout83
    RunTask68
    UpdateLayoutTree51
    v8.run19
    ParseHTML14
    HTMLDocumentParser::MaybeFetchQueuedPreloads11

    Time spent per request

    URLCPU time (ms)
    https://www.proantic.com/magazine/15

    CPU time spent

    Tool/domainTime (ms)
    www.proantic.com15.3
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    cdn 5
    survelliance 5
    hosting 3
    analytics 2
    CategoryNumber of tools
    cdn 1
    survelliance 1
    hosting 1
    analytics 1

    Third party requests and tools

    cdn (5 requests)
    Google Fonts
    survelliance (5 requests)
    Google Fonts
    hosting (3 requests)
    WordPress
    analytics (2 requests)
    WordPress Site Stats

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b13.0 KB71.6 KB1
    css0 b31.8 KB189.0 KB5
    javascript0 b6.5 KB20.7 KB2
    image0 b36.4 KB36.1 KB1
    font0 b18.9 KB18.6 KB1
    favicon0 b1.4 KB1.1 KB1
    TotalN/A108.1 KB337.1 KB11

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b2.3 KB21.4 KB1
    javascript0 b2.9 KB7.2 KB1
    image0 b148.6 KB147.1 KB4
    font0 b106.4 KB106.2 KB4
    TotalN/A260.1 KB281.9 KB10
    afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

    Screenshots

    afterPageCompleteCheck.png

    afterPageCompleteCheck.png

    layoutShift.png

    layoutShift.png

    largestContentfulPaint.png

    largestContentfulPaint.png

    Axe

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

    Violations

    serious
    Elements must meet minimum color contrast ratio thresholds (cat.color,wcag2aa,wcag143,TTv5,TT13.c,EN-301-549,EN-9.1.4.3,ACT) - color-contrastEnsure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds
    Fix any of the following: Element has insufficient color contrast of 2.86 (foreground color: #b49543, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1
    • <a href="https://www.proantic.com/magazine/" aria-current="page">Accueil</a>
    • <p class="tagline">Magazine d'art et expositions</p>
    • <a href="https://www.proantic.com/magazine/" aria-current="page">Accueil</a>
    • <a href="https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/le-musee-jacquemart-andre-histoire-et-collections/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/le-musee-jacquemart-andre-histoire-et-collections/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/rococo-co-de-nicolas-pineau-a-cindy-sherman/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/rococo-co-de-nicolas-pineau-a-cindy-sherman/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/lustre-et-ses-appliques-au-bouquet-fleuri/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/lustre-et-ses-appliques-au-bouquet-fleuri/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/au-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/au-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/christofle-une-brillante-histoire/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/christofle-une-brillante-histoire/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/bonheur-du-jour-estampille-de-charles-topino/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/bonheur-du-jour-estampille-de-charles-topino/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/jardins-et-palais-dorient/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/jardins-et-palais-dorient/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/versailles-science-and-splendour/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/versailles-science-and-splendour/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/apollon-et-uranie-par-michelangelo-maestri/#respond" class="entry-comments-no">Aucun commentaire</a>
    • <a href="https://www.proantic.com/magazine/apollon-et-uranie-par-michelangelo-maestri/" class="read-more">Continue Reading</a>
    • <a href="https://www.proantic.com/magazine/" aria-current="page">Accueil</a>
    moderate
    Aside should not be contained in another landmark (cat.semantics,best-practice) - landmark-complementary-is-top-levelEnsure the complementary landmark or aside is at top level
    Fix any of the following: The null landmark is contained in another landmark.
    • <aside id="search-4" class="widget group widget_search">
    • <aside id="categories-5" class="widget group widget_categories">
    • <aside id="text-3" class="widget group widget_text">
    • <aside id="block-3" class="widget group widget_block widget_media_image"></aside>
    Landmarks should have a unique role or role/label/title (i.e. accessible name) combination (cat.semantics,best-practice) - landmark-uniqueEnsure landmarks are unique
    Fix any of the following: The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable
    • <nav class="nav" role="navigation">
    • <div class="sidebar sidebar-right" role="complementary" itemtype="http://schema.org/WPSideBar" itemscope="itemscope">
    serious
    Links must be distinguishable without relying on color (cat.color,wcag2a,wcag141,TTv5,TT13.a,EN-301-549,EN-9.1.4.1) - link-in-text-blockEnsure links are distinguished from surrounding text in a way that does not rely on color
    Fix any of the following: The link has insufficient color contrast of 1.43:1 with the surrounding text. (Minimum contrast is 3:1, link text: #161616, surrounding text: #333333) The link has no styling (such as underline) to distinguish it from the surrounding text
    • <a href="https://www.proantic.it/artiquariato/"><strong>ARTIQUARIATO&nbsp; magazine d’arte online</strong>&nbsp; ,</a>
    Links must have discernible text (cat.name-role-value,wcag2a,wcag244,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.2.4.4,EN-9.4.1.2,ACT) - link-nameEnsure links have discernible text
    Fix all of the following: Element is in tab order and does not have accessible text Fix any of the following: Element does not have text that is visible to screen readers aria-label attribute does not exist or is empty aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty Element has no title attribute
    • <a href="https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fpaire-de-vases-de-theodore-deck%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/paire-de-vases-de-theodore-deck/&amp;description=Paire%20de%20Vases&nbsp;de%20Théodore%20Deck&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1509721-alb-67d6e4870d6e8.jpg?fit=665%2C525&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/le-musee-jacquemart-andre-histoire-et-collections/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/le-musee-jacquemart-andre-histoire-et-collections/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/le-musee-jacquemart-andre-histoire-et-collections/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fle-musee-jacquemart-andre-histoire-et-collections%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/le-musee-jacquemart-andre-histoire-et-collections/&amp;description=Le%20musée%20Jacquemart-André.%20Histoire%20et%20collections&nbsp;&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-decran-2025-03-24-154313.png?fit=548%2C383&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/rococo-co-de-nicolas-pineau-a-cindy-sherman/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/rococo-co-de-nicolas-pineau-a-cindy-sherman/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/rococo-co-de-nicolas-pineau-a-cindy-sherman/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Frococo-co-de-nicolas-pineau-a-cindy-sherman%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/rococo-co-de-nicolas-pineau-a-cindy-sherman/&amp;description=Rococo%20&amp;%20co.%20De%20Nicolas%20Pineau%20à%20Cindy%20Sherman&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/preview__71677_document.jpg?fit=665%2C482&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/lustre-et-ses-appliques-au-bouquet-fleuri/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/lustre-et-ses-appliques-au-bouquet-fleuri/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/lustre-et-ses-appliques-au-bouquet-fleuri/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Flustre-et-ses-appliques-au-bouquet-fleuri%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/lustre-et-ses-appliques-au-bouquet-fleuri/&amp;description=Lustre%20et%20ses%20Appliques%20au%20Bouquet%20Fleuri&nbsp;&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-decran-2025-03-17-145407.png?fit=543%2C444&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/au-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/au-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/au-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fau-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/au-fil-de-lor-lart-de-se-vetir-de-lorient-au-soleil-levant/&amp;description=Au%20fil%20de%20l’or%20–%20L’art%20de%20se%20vêtir%20de%20l’Orient%20au%20Soleil-Levant&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-decran-2025-03-17-143923.png?fit=602%2C366&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/christofle-une-brillante-histoire/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/christofle-une-brillante-histoire/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/christofle-une-brillante-histoire/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fchristofle-une-brillante-histoire%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/christofle-une-brillante-histoire/&amp;description=Christofle,%20une%20brillante%20histoire&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/bamvf-1300x975-1.jpg?fit=665%2C499&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/bonheur-du-jour-estampille-de-charles-topino/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/bonheur-du-jour-estampille-de-charles-topino/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/bonheur-du-jour-estampille-de-charles-topino/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fbonheur-du-jour-estampille-de-charles-topino%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/bonheur-du-jour-estampille-de-charles-topino/&amp;description=&nbsp;Bonheur%20du%20jour%20estampillé%20de%20Charles%20Topino&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/1485652-67a4e6251ae9e.jpg?fit=665%2C444&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/jardins-et-palais-dorient/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/jardins-et-palais-dorient/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/jardins-et-palais-dorient/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fjardins-et-palais-dorient%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/jardins-et-palais-dorient/&amp;description=Jardins%20et%20palais%20d’Orient&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/Capture-decran-2025-03-05-104020.png?fit=614%2C379&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/versailles-science-and-splendour/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/versailles-science-and-splendour/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/versailles-science-and-splendour/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fversailles-science-and-splendour%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/versailles-science-and-splendour/&amp;description=Versailles:%20Science%20and%20Splendour&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/03/e787c9ad-3605-4657-b547-17d732cf59da_2000x1600.jpg?fit=665%2C333&amp;ssl=1" class="social-icon">
    • <a href="https://www.proantic.com/magazine/apollon-et-uranie-par-michelangelo-maestri/">
    • <a href="https://www.facebook.com/sharer.php?u=https://www.proantic.com/magazine/apollon-et-uranie-par-michelangelo-maestri/" class="social-icon"><i class="olsen-icons olsen-icons-facebook"></i></a>
    • <a href="https://twitter.com/share?url=https://www.proantic.com/magazine/apollon-et-uranie-par-michelangelo-maestri/" class="social-icon"><i class="olsen-icons olsen-icons-twitter"></i></a>
    • <a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fwww.proantic.com%2Fmagazine%2Fapollon-et-uranie-par-michelangelo-maestri%2F" class="social-icon"><i class="olsen-icons olsen-icons-linkedin"></i></a>
    • <a href="https://pinterest.com/pin/create/bookmarklet/?url=https://www.proantic.com/magazine/apollon-et-uranie-par-michelangelo-maestri/&amp;description=Apollon%20et%20Uranie%20par%20Michelangelo%20Maestri&amp;media=https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2025/02/Capture-decran-2025-02-24-151349.png?fit=665%2C319&amp;ssl=1" class="social-icon">
    moderate
    Page should contain a level-one heading (cat.semantics,best-practice) - page-has-heading-oneEnsure that the page, or at least one of its frames contains a level-one heading
    Fix all of the following: Page must have a level-one heading
    • <html lang="fr-FR">