Tested 2025-02-16 02:37:58 using Chrome 132.0.6834.83 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance score | 49 |
Total page size | 1.9 MB |
Requests | 86 |
Timing metrics | |
TTFB | 5.573 s |
First Paint | 5.848 s |
Fully Loaded | 13.452 s |
Google Web Vitals | |
TTFB | 5.573 s |
First Contentful Paint (FCP) | 5.848 s |
Largest Contentful Paint (LCP) | 5.955 s |
Cumulative Layout Shift (CLS) | 0.02 |
Total Blocking Time | 150 ms |
Max Potential FID | 133 ms |
CPU metrics | |
CPU long tasks | 6 |
CPU last long task happens at | 9.426 s |
Visual Metrics | |
First Visual Change | 5.833 s |
Speed Index | 9.638 s |
Visual Complete 85% | 11.833 s |
Visual Complete 99% | 13.000 s |
Last Visual Change | 13.000 s |
Use--filmstrip.showAll
to show all filmstrips.
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.
Title | Advice | Score | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Avoid slowing down the critical rendering path (avoidRenderBlocking) | The page has 5 blocking requests and 5 in body parser blocking (5 JavaScript and 5 CSS). There are 2 potentially render blocking requests. You need to verify if they are render blocking: https://apis.google.com/js/platform.js https://www.googletagmanager.com/gtag/js?id=G-2M8CLPGL2R | 48 | |||||||||||||||||||||||||||||||||
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: | |||||||||||||||||||||||||||||||||||
Don't scale images in the browser (avoidScalingImages) | The page has 10 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. | 0 | |||||||||||||||||||||||||||||||||
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: | |||||||||||||||||||||||||||||||||||
Have a fast first contentful paint (firstContentfulPaint) | First contentful paint is poor (5.848 s). It is in the Google Web Vitals poor range, slower than 3 seconds.The page has a high time to first byte (TTFB) 5.573 s that you should look into to improve first contentful paint. | 0 | |||||||||||||||||||||||||||||||||
Description: The First Contentful Paint (FCP) metric measures the time from when the page starts loading to when any part of the page content is rendered on the screen. For this metric, "content" refers to text, images (including background images), <svg> elements, or non-white <canvas> elements. | |||||||||||||||||||||||||||||||||||
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) | Largest contentful paint is poor 5.955 s. It is in the Google Web Vitals poor range, slower than 4.5 seconds. | 0 | |||||||||||||||||||||||||||||||||
Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance. | |||||||||||||||||||||||||||||||||||
Offenders: | |||||||||||||||||||||||||||||||||||
Avoid CPU Long Tasks (longTasks) | The page has 6 CPU long tasks with the total of 450 ms. The total blocking time is 150 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. | 0 | |||||||||||||||||||||||||||||||||
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: | |||||||||||||||||||||||||||||||||||
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: | |||||||||||||||||||||||||||||||||||
Avoid extra requests by setting cache headers (cacheHeaders) | The page has 13 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 6.4 kB the next access. | 0 | |||||||||||||||||||||||||||||||||
Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request. | |||||||||||||||||||||||||||||||||||
Offenders: | |||||||||||||||||||||||||||||||||||
Long cache headers is good (cacheHeadersLong) | The page has 21 requests that have a shorter cache time than 30 days (but still a cache time). | 79 | |||||||||||||||||||||||||||||||||
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: | |||||||||||||||||||||||||||||||||||
Total CSS size shouldn't be too big (cssSize) | The total CSS transfer size is 122.4 kB and uncompressed size is 471.2 kB. That is big and the CSS could most probably be smaller. | 0 | |||||||||||||||||||||||||||||||||
Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore. | |||||||||||||||||||||||||||||||||||
Offenders:
| |||||||||||||||||||||||||||||||||||
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: | |||||||||||||||||||||||||||||||||||
Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 1.2 MB and the uncompressed size is 3.6 MB. This is totally crazy! There is really room for improvement here. | 0 | |||||||||||||||||||||||||||||||||
Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks? | |||||||||||||||||||||||||||||||||||
Offenders: | |||||||||||||||||||||||||||||||||||
Make each CSS response small (optimalCssSize) | https://www.antikeo.com/assets/vendor/bootstrap/css/bootstrap.min.css size is 33.7 kB (33657) and that is bigger than the limit of 14.5 kB. https://www.antikeo.com/assets/css/style-1.6.min.css?160 size is 56.1 kB (56071) and that is bigger than the limit of 14.5 kB. https://www.antikeo.com/assets/css/plugins-1.6.css size is 26 kB (25979) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB. | 70 | |||||||||||||||||||||||||||||||||
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:
| |||||||||||||||||||||||||||||||||||
Total page size shouldn't be too big (pageSize) | The page total transfer size is 2 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller. | 0 | |||||||||||||||||||||||||||||||||
Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth. | |||||||||||||||||||||||||||||||||||
Offenders: | |||||||||||||||||||||||||||||||||||
Don't use private headers on static content (privateAssets) | The page has 13 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. | 0 | |||||||||||||||||||||||||||||||||
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: |
Page info | |
---|---|
Title | Antikeo | La marketplace d’Antiquités en ligne, mises en vente et certifiées par des antiquaires professionnels |
Width | 1350 |
Height | 8526 |
DOM elements | 1412 |
Avg DOM depth | 11 |
Max DOM depth | 20 |
Iframes | 3 |
Script tags | 38 |
Local storage | 75 B |
Session storage | 9 B |
Network Information API | 4g |
Resource Hints |
---|
preconnect |
https://www.googletagmanager.com/ |
https://cdn.jsdelivr.net/ |
https://media2.antikeo.com/ |
Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies html
or --browsertime.chrome.includeResponseBodies html
to help Wappalyzer find more information about technologies used.
Technology | Confidence | Category |
---|---|---|
Envoy | 100 | Reverse proxies |
Azure Front Door | 100 | Load balancers |
Azure | 100 | PaaS |
Nginx | 100 | Web servers Reverse proxies |
HSTS | 100 | Security |
Cloudflare | 100 | CDN |
HTTP/3 | 100 | Miscellaneous |
Data collected using Third Party Web 0.26.2
Cdn |
---|
Adobe TypeKit |
Google Fonts |
Cloudflare CDN |
Google CDN |
Survelliance |
Google Fonts |
Other Google APIs/SDKs |
Google Tag Manager |
Google CDN |
Google Analytics |
Google/Doubleclick Ads |
Utility |
Other Google APIs/SDKs |
Clarity |
Tag-manager |
Google Tag Manager |
Social |
Analytics |
Google Analytics |
Ad |
Bing Ads |
Google/Doubleclick Ads |
Visual Metrics | |
---|---|
First Visual Change | 5.833 s |
Speed Index | 9.638 s |
Largest Image | 6.433 s |
Heading | 5.933 s |
LargestContentfulPaint | 11.833 s |
Last Meaningful Paint | 11.833 s |
Largest Contentful Paint | 11.833 s |
Visual Complete 85% | 11.833 s |
Visual Complete 95% | 11.833 s |
Visual Complete 99% | 13.000 s |
Last Visual Change | 13.000 s |
Visual Readiness | 7.167 s |
Navigation Timing | |
---|---|
backEndTime | 5.573 s |
domContentLoadedTime | 6.231 s |
domInteractiveTime | 6.231 s |
domainLookupTime | 0 ms |
frontEndTime | 1.067 s |
pageDownloadTime | 80 ms |
pageLoadTime | 6.720 s |
redirectionTime | 0 ms |
serverConnectionTime | 24 ms |
serverResponseTime | 5.623 s |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 5.573 s |
First Contentful Paint (FCP) | 5.848 s |
Largest Contentful Paint (LCP) | 5.955 s |
Cumulative Layout Shift (CLS) | 0.02 |
Total Blocking Time (TBT) | 150 ms |
First Contentful Paint info | |
---|---|
Elements that needed recalculate style before FCP | 102 |
Time spent in recalculate style before FCP | 10.598 ms |
Extra timings | |
---|---|
TTFB | 5.573 s |
First Paint | 5.848 s |
Load Event End | 6.722 s |
Fully loaded | 13.452 s |
When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.
Element type | DIV |
Element/tag | <div class="col-12 col-sm-6 order-0 order-sm-1 item-half-right item_86"></div> |
Render time | 5.955 s |
Element render delay | 82 ms |
TTFB | 5.573 s |
Resource delay | 10 ms |
Resource load duration | 290 ms |
Elements that needed recalculate style before LCP | 189 |
Time spent in recalculate style before LCP | 16.747 ms |
Load time | 5.893 s |
URL | https://www.antikeo....8422-60298750.jpg |
Size (width*height) | 290507 |
DOM path | |
div:eq(4) > div > div > div > div#main-slider > div > div > div:eq(0) > a > div > div > div:eq(1)> div:eq(4) > div > div > div > div#main-slider > div > div > div:eq(0) > a > div > div > div:eq(1)> |
0.01955 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.
Score | HTML Element |
---|---|
0.01146 | <ul class="nav navbar-nav mega-menu"></ul> |
body > header#header > div:eq(1) > div > div:eq(0) > div:eq(1) > div > div > ul | |
0.00615 | <div class="container"></div>,<div class="col-12 nav-top-left"></div>,<div class="container"></div> |
body > header#header > div:eq(0) > div,body > header#header > div:eq(1) > div > div:eq(0) > div:eq(0) > div > div > div,body > header#header > div:eq(1) > div > div:eq(0) > div:eq(1) > div | |
0.00127 | <button class="btn btn-default btn-search" aria-label="search"></button>,<div class="nav-top-right"></div> |
body > header#header > div:eq(1) > div > div:eq(0) > div:eq(0) > div > div > div > div > div:eq(1) > form#form_validate_search > div > button,body > header#header > div:eq(1) > div > div:eq(0) > div:eq(0) > div > div > div > div > div:eq(2) | |
0.00050 | |
body > div:eq(4) > div > div > div > div#main-slider > div > div > div:eq(0) > a > div > div > div:eq(0) > div > p > #text | |
0.00017 | <a href="https://www.antikeo.com/"></a> |
body > header#header > div:eq(1) > div > div:eq(0) > div:eq(0) > div > div > div > div > div:eq(0) > a |
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.
Read more about the Long Animation Frames API here here.
The top 10 longest animation frames entries
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
84 ms | 144.3 ms | 0.7 ms | 0.1 ms | 0.6 ms |
https://www.googletagmanager.com/gtm.js?id=GTM-PGPNSX6 | ||||
Invoker: TimerHandler:setTimeout | ||||
https://www.googletagmanager.com/gtag/js?id=G-2NB4BK7JZ8&l=dataLayer&cx=c>m=45He52d0v830982579za200 | ||||
Invoker: https://www.googletagmanager.com/gtag/js?id=G-2NB4BK7JZ8&l=dataLayer&cx=c>m=45He52d0v830982579za200 |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
38 ms | 139.3 ms | -0.3 ms | 0 ms | -0.3 ms |
https://www.googletagmanager.com/gtag/js?id=AW-387766912 | ||||
Invoker: https://www.googletagmanager.com/gtag/js?id=AW-387766912 | ||||
https://www.googletagmanager.com/gtm.js?id=GTM-PGPNSX6 | ||||
Invoker: SCRIPT#.onload | ||||
https://connect.facebook.net/en_US/fbevents.js | ||||
Invoker: https://connect.facebook.net/en_US/fbevents.js |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
31 ms | 74.2 ms | 23.8 ms | 17.5 ms | 6.3 ms |
https://www.googletagmanager.com/gtm.js?id=GTM-PGPNSX6 | ||||
Invoker: https://www.googletagmanager.com/gtm.js?id=GTM-PGPNSX6 |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
14 ms | 64 ms | 0 ms | 0 ms | 0 ms |
https://www.clarity.ms/s/0.7.67/clarity.js | ||||
Invoker: https://www.clarity.ms/s/0.7.67/clarity.js |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
11 ms | 70.5 ms | 0.5 ms | 0.5 ms | 0 ms |
https://bat.bing.com/p/action/17504842.js | ||||
Invoker: https://bat.bing.com/p/action/17504842.js | ||||
https://www.googletagmanager.com/gtag/destination?id=AW-387766912&l=dataLayer&cx=c>m=45je52d0v883997025za200zb830982579 | ||||
Invoker: https://www.googletagmanager.com/gtag/destination?id=AW-387766912&l=dataLayer&cx=c>m=45je52d0v883997025za200zb830982579 |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
5 ms | 237.7 ms | 24.3 ms | 0.1 ms | 24.2 ms |
https://www.antikeo.com/assets/js/jquery-3.7.0.min.js | ||||
Invoker: https://www.antikeo.com/assets/js/jquery-3.7.0.min.js |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
5 ms | 53.7 ms | 30.3 ms | 25.4 ms | 4.9 ms |
https://www.googletagmanager.com/gtm.js?id=GTM-PGPNSX6 | ||||
Invoker: TimerHandler:setTimeout |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
2 ms | 54.2 ms | 3.8 ms | 2.7 ms | 1.1 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
0 ms | 53.2 ms | 3.8 ms | 3 ms | 0.8 ms |
https://apis.google.com/js/platform.js | ||||
Invoker: https://apis.google.com/js/platform.js | ||||
https://www.antikeo.com/assets/js/plugins-1.6.js | ||||
Invoker: TimerHandler:setTimeout | ||||
https://www.antikeo.com/ | ||||
Invoker: https://www.antikeo.com/ |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
0 ms | 134.4 ms | 6.6 ms | 3.6 ms | 3 ms |
https://apis.google.com/_/scs/abc-static/_/js/k=gapi.lb.en.5oZHy0SiJxw.O/m=ratingbadge/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-Hry6DG-RE4t9kNz_t6hiwmwXOmA/cb=gapi.loaded_0?le=scs | ||||
Invoker: https://apis.google.com/_/scs/abc-static/_/js/k=gapi.lb.en.5oZHy0SiJxw.O/m=ratingbadge/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-Hry6DG-RE4t9kNz_t6hiwmwXOmA/cb=gapi.loaded_0?le=scs | ||||
https://apis.google.com/_/scs/abc-static/_/js/k=gapi.lb.en.5oZHy0SiJxw.O/m=auth/exm=ratingbadge/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-Hry6DG-RE4t9kNz_t6hiwmwXOmA/cb=gapi.loaded_1?le=scs | ||||
Invoker: https://apis.google.com/_/scs/abc-static/_/js/k=gapi.lb.en.5oZHy0SiJxw.O/m=auth/exm=ratingbadge/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-Hry6DG-RE4t9kNz_t6hiwmwXOmA/cb=gapi.loaded_1?le=scs | ||||
https://www.antikeo.com/assets/js/jquery-3.7.0.min.js | ||||
Forced Style And Layout Duration: 9 ms Invoker: TimerHandler:setTimeout | ||||
https://www.antikeo.com/assets/js/jquery-3.7.0.min.js | ||||
Invoker: TimerHandler:setTimeout |
There are no Server Timings.
There are no custom configured scripts.
There are no custom extra metrics from scripting.
name | value |
---|---|
AudioHandlers | 0 |
AudioWorkletProcessors | 0 |
Documents | 16 |
Frames | 17 |
JSEventListeners | 604 |
LayoutObjects | 1287 |
MediaKeySessions | 0 |
MediaKeys | 0 |
Nodes | 7255 |
Resources | 143 |
ContextLifecycleStateObservers | 29 |
V8PerContextDatas | 4 |
WorkerGlobalScopes | 1 |
UACSSResources | 0 |
RTCPeerConnections | 0 |
ResourceFetchers | 17 |
AdSubframes | 0 |
DetachedScriptStates | 1 |
ArrayBufferContents | 14 |
LayoutCount | 47 |
RecalcStyleCount | 167 |
LayoutDuration | 70 |
RecalcStyleDuration | 93 |
DevToolsCommandDuration | 43 |
ScriptDuration | 1146 |
V8CompileDuration | 7 |
TaskDuration | 2110 |
TaskOtherDuration | 751 |
ThreadTime | 2 |
ProcessTime | 3 |
JSHeapUsedSize | 22034636 |
JSHeapTotalSize | 35348480 |
FirstMeaningfulPaint | 6024 |
Name | Display Time | X | Y | Width | Height |
---|---|---|---|---|---|
LargestImage (logo_678cdec402381.png) | 6.433 s | 50 | 45 | 156 | 70 |
<img src="https://www.antikeo.com/uploads/logo/logo_678cdec402381.png" data-src="https://www.antikeo.com/uploads/logo/logo_678cdec402381.png" alt="Antikeo" class=" ls-is-cached lazyloaded"> | |||||
Heading | 5.933 s | 70 | 5 | 1225 | 19 |
<h1 style="font-size: 1rem; font-weight: 400; margin-bottom: 0"></h1> | |||||
LargestContentfulPaint | 11.833 s | 675 | 152 | 625 | 465 |
<div class="col-12 col-sm-6 order-0 order-sm-1 item-half-right item_86"></div> |
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/2.0 |
Total requests | 86 |
Total domains | 22 |
Total transfer size | 1.9 MB |
Total content size | 4.8 MB |
Responses missing compression | 41 |
Number of cookies | 4 |
Third party cookies | 2 |
Requests per response code | |
---|---|
200 | 75 |
204 | 11 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 74.6 KB | 382.6 KB | 5 |
css | 0 b | 119.5 KB | 460.2 KB | 10 |
javascript | 0 b | 1.2 MB | 3.4 MB | 31 |
image | 0 b | 432.0 KB | 425.3 KB | 16 |
font | 0 b | 153.1 KB | 151.4 KB | 7 |
plain | 837 B | 2.0 KB | 3 B | 14 |
json | 0 b | 2.9 KB | 1.6 KB | 3 |
Total | 837 B | 1.9 MB | 4.8 MB | 86 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
www.antikeo.com | 7.570 s | 780.6 KB | 1.5 MB | 24 |
use.typekit.net | 147 ms | 74.1 KB | 78.4 KB | 4 |
fonts.googleapis.com | 81 ms | 1.8 KB | 13.3 KB | 2 |
p.typekit.net | 49 ms | 172 B | 5 B | 1 |
cdnjs.cloudflare.com | 49 ms | 2.9 KB | 5.9 KB | 1 |
apis.google.com | 61 ms | 158.6 KB | 456.8 KB | 5 |
www.googletagmanager.com | 302 ms | 595.7 KB | 1.8 MB | 8 |
fonts.gstatic.com | 39 ms | 48.7 KB | 48.7 KB | 2 |
www.google.com | 243 ms | 124.0 KB | 359.7 KB | 8 |
accounts.google.com | 31 ms | N/A | 0 b | 1 |
www.gstatic.com | 100 ms | 3.9 KB | 3.3 KB | 3 |
s.pinimg.com | 58 ms | 25.3 KB | 85.7 KB | 2 |
www.google-analytics.com | 73 ms | 21.9 KB | 51.7 KB | 3 |
bat.bing.com | 89 ms | 17.4 KB | 57.1 KB | 2 |
connect.facebook.net | 58 ms | 75.4 KB | 309.8 KB | 2 |
ct.pinterest.com | 156 ms | 5.7 KB | 5.2 KB | 6 |
region1.analytics.google.com | 121 ms | N/A | 0 b | 1 |
stats.g.doubleclick.net | 35 ms | 548 B | 0 b | 1 |
www.google.fr | 35 ms | 63 B | 42 B | 1 |
bat.bing.net | 273 ms | 705 B | 0 b | 4 |
www.clarity.ms | 128 ms | 30.1 KB | 69.1 KB | 2 |
x.clarity.ms | 855 ms | 0 b | 0 b | 3 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 1 day | 1 year |
Last modified | 0 seconds | 8 weeks | 27 years |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 2.5 KB | 2 |
css | 0 b | 0 |
javascript | 540.8 KB | 16 |
image | 9.0 KB | 6 |
font | 0 b | 0 |
plain | 1.6 KB | 13 |
json | 1.5 KB | 2 |
Total | 555.4 KB | 39 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 2.5 KB | 3 |
css | 0 b | 0 |
javascript | 797.6 KB | 21 |
image | 206.9 KB | 13 |
font | 0 b | 0 |
json | 2.9 KB | 3 |
plain | 1.6 KB | 13 |
Total | 1011.5 KB | 53 |
Render blocking information directly from Chrome.
Blocking | In body parser blocking | Potentially blocking |
---|---|---|
5 | 5 | 2 |
Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.
Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.
Type | Quantity | Total duration (ms) |
---|---|---|
Total Blocking Time | 150 | |
Max Potential First Input Delay | 133 | |
Long Tasks before First Paint | 0 | 0 |
Long Tasks before First Contentful Paint | 0 | 0 |
Long Tasks before Largest Contentful Paint | 1 | 57 |
Long Tasks after Load Event End | 5 | 393 |
Total Long Tasks | 6 | 450 |
CPU last long task happened at 9.426 s
name | startTime | duration | containerId | containerName | containerSrc | containerType |
---|---|---|---|---|---|---|
self | 5919 | 57 | window | |||
self | 8942 | 85 | window | |||
self | 9029 | 51 | window | |||
self | 9113 | 133 | window | |||
self | 9294 | 60 | window | |||
self | 9426 | 64 | window |
Calculated using Tracium.
Categories (ms) | |
---|---|
parseHTML | 132 |
styleLayout | 170 |
paintCompositeRender | 35 |
scriptParseCompile | 7 |
scriptEvaluation | 1304 |
garbageCollection | 27 |
other | 403 |
Events (ms) | |
---|---|
v8.run | 728 |
FunctionCall | 319 |
RunTask | 271 |
RunMicrotasks | 142 |
UpdateLayoutTree | 99 |
ParseHTML | 89 |
Layout | 70 |
HTMLDocumentParser::MaybeFetchQueuedPreloads | 31 |
V8.BytecodeBudgetInterrupt | 21 |
EventDispatch | 19 |
DecodedDataDocumentParser::AppendBytes | 19 |
Layerize | 18 |
Commit | 18 |
PrePaint | 17 |
ParseAuthorStyleSheet | 16 |
Paint | 15 |
V8.GC_MC_INCREMENTAL | 14 |
HitTest | 14 |
v8.callFunction | 13 |
CompressionStream Deflate | 12 |
Tool/domain | Time (ms) |
---|---|
Google Tag Manager | 563.4 |
www.antikeo.com | 250.6 |
Other Google APIs/SDKs | 264.7 |
Clarity | 77.6 |
62.1 | |
25.7 | |
Google Analytics | 22.2 |
Third party requests categorised by Third party web version 0.26.2.
Category | Requests |
---|---|
cdn | 13 |
survelliance | 36 |
utility | 20 |
tag-manager | 8 |
social | 10 |
analytics | 3 |
ad | 3 |
Category | Number of tools |
---|---|
cdn | 4 |
survelliance | 7 |
utility | 2 |
tag-manager | 1 |
social | 2 |
analytics | 1 |
ad | 2 |
Here's a list of domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty
.
region1.analytics.google.com |
bat.bing.net |
Cookie name | Domain |
---|---|
ar_debug | .pinterest.com |
Calculated using .*antikeo.* (use --firstParty
to configure).
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 62.0 KB | 338.6 KB | 1 |
css | 0 b | 116.4 KB | 440.9 KB | 6 |
javascript | 0 b | 143.2 KB | 354.3 KB | 5 |
image | 0 b | 426.3 KB | 421.9 KB | 9 |
font | 0 b | 31.4 KB | 30.5 KB | 2 |
json | 0 b | 1.4 KB | 988 B | 1 |
Total | N/A | 780.6 KB | 1.5 MB | 24 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 12.6 KB | 44.0 KB | 4 |
css | 0 b | 3.1 KB | 19.3 KB | 4 |
javascript | 0 b | 1.0 MB | 3.1 MB | 26 |
image | 0 b | 5.7 KB | 3.5 KB | 7 |
font | 0 b | 121.7 KB | 121.0 KB | 5 |
plain | 837 B | 2.0 KB | 3 B | 14 |
json | 0 b | 1.5 KB | 650 B | 2 |
Total | 778 B | 1.2 MB | 3.3 MB | 62 |
afterPageCompleteCheck.png
layoutShift.png
largestContentfulPaint.png
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 .
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-contrast | Ensure 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 3.72 (foreground color: #ffffff, background color: #6d86aa, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1
| |
moderate | |
Heading levels should only increase by one (cat.semantics,best-practice) - heading-order | Ensure the order of headings is semantically correct |
Fix any of the following:
Heading order invalid
| |
minor | |
Alternative text of images should not be repeated as text (cat.text-alternatives,best-practice) - image-redundant-alt | Ensure image alternative is not repeated as text |
Fix all of the following:
Element contains <img> element with alt text that duplicates existing text
| |
moderate | |
Document should have one main landmark (cat.semantics,best-practice) - landmark-one-main | Ensure the document has a main landmark |
Fix all of the following:
Document does not have a main landmark
| |
critical | |
Zooming and scaling must not be disabled (cat.sensory-and-visual-cues,wcag2aa,wcag144,EN-301-549,EN-9.1.4.4,ACT) - meta-viewport | Ensure <meta name="viewport"> does not disable text scaling and zooming |
Fix any of the following:
maximum-scale on <meta> tag disables zooming on mobile devices
| |
moderate | |
All page content should be contained by landmarks (cat.keyboard,best-practice) - region | Ensure all page content is contained by landmarks |
Fix any of the following:
Some page content is not contained by landmarks
|