Tested 2025-04-04 01:32:38 using Chrome 132.0.6834.83 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance score | 78 |
Total page size | 2.2 MB |
Requests | 42 |
Timing metrics | |
TTFB | 302 ms |
First Paint | 446 ms |
Fully Loaded | 1.221 s |
Google Web Vitals | |
TTFB | 302 ms |
First Contentful Paint (FCP) | 446 ms |
Largest Contentful Paint (LCP) | 870 ms |
Cumulative Layout Shift (CLS) | 0.00 |
104 ms | |
Total Blocking Time | 181 ms |
Max Potential FID | 174 ms |
CPU metrics | |
CPU long tasks | 4 |
CPU last long task happens at | 1.047 s |
Visual Metrics | |
First Visual Change | 466 ms |
Speed Index | 530 ms |
Visual Complete 85% | 466 ms |
Visual Complete 99% | 1.000 s |
Last Visual Change | 1.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 3 in body parser blocking (4 JavaScript and 4 CSS). | 60 | ||||||||||||||||||||||||
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 4 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them. | 60 | ||||||||||||||||||||||||
Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one. | ||||||||||||||||||||||||||
Offenders: | ||||||||||||||||||||||||||
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. | ||||||||||||||||||||||||||
Avoid CPU Long Tasks (longTasks) | The page has 4 CPU long tasks with the total of 381 ms. The total blocking time is 181 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. | 20 | ||||||||||||||||||||||||
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. | 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: | ||||||||||||||||||||||||||
Avoid extra requests by setting cache headers (cacheHeaders) | The page has 2 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 5.3 kB the next access. | 80 | ||||||||||||||||||||||||
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 24 requests that have a shorter cache time than 30 days (but still a cache time). | 76 | ||||||||||||||||||||||||
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: | ||||||||||||||||||||||||||
Avoid too many fonts (fewFonts) | The page has 11 font requests. Do you really need them? What value does the fonts give the user? | 0 | ||||||||||||||||||||||||
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 image size shouldn't be too big (imageSize) | The page total image size is 988.2 kB. It's really big. Is the page using the right format for the images? Can they be lazy loaded? Are they compressed as good as they can be? Make them smaller by using https://imageoptim.com/. | 50 | ||||||||||||||||||||||||
Description: Avoid having too many large images on the page. The images will not affect the first paint of the page, but it will eat bandwidth for the user. | ||||||||||||||||||||||||||
Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 327.1 kB and the uncompressed size is 1 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.proantic.com/css/A.sweetalert2-v1-2.css+carrousel-09.css,,q20250403080430+fontawesome.min.css+regular.min.css+thin.min.css+sharp-solid.min.css,Mcc.cM6W6IZUZX.css.pagespeed.cf.Rz1MDGzIXY.css size is 39.5 kB (39528) 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:
| ||||||||||||||||||||||||||
Total page size shouldn't be too big (pageSize) | The page total transfer size is 2.3 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 3 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. | 70 | ||||||||||||||||||||||||
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: |
Title | Advice | Score |
---|---|---|
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: | ||
Do not share user data with third parties. (thirdPartyPrivacy) | The page has 21% requests that are 3rd party (9 requests with a size of 323.5 kB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 6 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. The page do 4 utility requests and uses 1 utility 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: |
Page info | |
---|---|
Title | Proantic: Tous les Antiquaires de Proantic |
Width | 1350 |
Height | 14644 |
DOM elements | 7016 |
Avg DOM depth | 8 |
Max DOM depth | 12 |
Iframes | 0 |
Script tags | 15 |
Local storage | 0 b |
Session storage | 0 b |
Network Information API | 4g |
Resource Hints |
---|
dns-prefetch |
https://cdn-images.mailchimp.com/ |
preconnect |
https://cdn-images.mailchimp.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 |
---|---|---|
Amazon Web Services | 100 | PaaS |
HSTS | 100 | Security |
Google PageSpeed 1.13.35.2 | 100 | Caching Web server extensions Performance |
Cloudflare | 100 | CDN |
Amazon CloudFront | 100 | CDN |
HTTP/3 | 100 | Miscellaneous |
Data collected using Third Party Web 0.26.2
Cdn |
---|
Google CDN |
Cloudflare CDN |
JSDelivr CDN |
Survelliance |
Google CDN |
Google Tag Manager |
Other Google APIs/SDKs |
Tag-manager |
Google Tag Manager |
Marketing |
Mailchimp |
Utility |
Other Google APIs/SDKs |
Visual Metrics | |
---|---|
First Visual Change | 466 ms |
Speed Index | 530 ms |
Largest Image | 466 ms |
Heading | 966 ms |
LargestContentfulPaint | 966 ms |
Last Meaningful Paint | 966 ms |
Largest Contentful Paint | 966 ms |
Visual Complete 85% | 466 ms |
Visual Complete 95% | 900 ms |
Visual Complete 99% | 1.000 s |
Last Visual Change | 1.000 s |
Visual Readiness | 534 ms |
Navigation Timing | |
---|---|
backEndTime | 302 ms |
domContentLoadedTime | 1.039 s |
domInteractiveTime | 1.039 s |
domainLookupTime | 0 ms |
frontEndTime | 812 ms |
pageDownloadTime | 16 ms |
pageLoadTime | 1.129 s |
redirectionTime | 0 ms |
serverConnectionTime | 15 ms |
serverResponseTime | 298 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 302 ms |
First Contentful Paint (FCP) | 446 ms |
Largest Contentful Paint (LCP) | 870 ms |
Cumulative Layout Shift (CLS) | 0.00 |
Interaction to next paint (INP) | 104 ms |
Total Blocking Time (TBT) | 181 ms |
First Contentful Paint info | |
---|---|
Elements that needed recalculate style before FCP | 261 |
Time spent in recalculate style before FCP | 21.318 ms |
Extra timings | |
---|---|
TTFB | 302 ms |
First Paint | 446 ms |
Load Event End | 1.136 s |
Fully loaded | 1.221 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 | H1 |
Element/tag | <h1></h1> |
Render time | 870 ms |
Element render delay | 568 ms |
TTFB | 302 ms |
Resource delay | 0 ms |
Resource load duration | 0 ms |
Elements that needed recalculate style before LCP | 4158 |
Time spent in recalculate style before LCP | 85.984 ms |
Load time | 0 ms |
Size (width*height) | 33528 |
DOM path | |
div#section-nouveautes > div:eq(1) > h1> div#section-nouveautes > div:eq(1) > h1> |
0.00198 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.00081 | <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) | |
0.00057 | <div class="recherche flex navbar-big-screen"></div>,<div class="nouveau-curr-flag flex navbar-big-screen"></div>,<div class="nav-menu-hover" style="margin:0;padding:0;"></div> |
body > div#totop > div > div#new-menu-top > div:eq(0) > div:eq(2),body > div#totop > div > div#new-menu-top > div:eq(0) > div:eq(3),body > div#totop > div > div#new-menu-top > div:eq(0) > div:eq(3) > div:eq(0) | |
0.00037 | |
body > div#section-nouveautes > div:eq(1) > h1 > #text | |
0.00021 | , |
body > div#section-nouveautes > div:eq(1) > div:eq(0) > #text,body > div#section-nouveautes > div:eq(1) > div:eq(4) > div:eq(1) > h2 > a > #text | |
0.00001 | <button type="submit" style="border: none;background: none" aria-label="Que recherchez-vous ?"></button> |
body > div#totop > div > div#new-menu-top > div:eq(0) > div:eq(2) > form > button |
The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.
Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.
The measured latency was 104 ms.
Event type | mouseout |
Element type | BODY |
Element class name | body-nouv |
Event target | html>body.body-nouv |
Load state when the event happened | loading |
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 |
---|---|---|---|---|
208 ms | 175.1 ms | 82.9 ms | 77.4 ms | 5.5 ms |
https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js | ||||
Invoker: https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
24 ms | 72.2 ms | 2.8 ms | 1.7 ms | 1.1 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
9 ms | 65.3 ms | 48.7 ms | 0 ms | 48.7 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
6 ms | 58.9 ms | 5.1 ms | 1.8 ms | 3.3 ms |
https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR | ||||
Invoker: https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
0 ms | 29.8 ms | 26.2 ms | 24.8 ms | 1.4 ms |
No availible script information. |
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 | 6 |
Frames | 1 |
JSEventListeners | 286 |
LayoutObjects | 7234 |
MediaKeySessions | 0 |
MediaKeys | 0 |
Nodes | 26935 |
Resources | 150 |
ContextLifecycleStateObservers | 12 |
V8PerContextDatas | 3 |
WorkerGlobalScopes | 0 |
UACSSResources | 0 |
RTCPeerConnections | 0 |
ResourceFetchers | 6 |
AdSubframes | 0 |
DetachedScriptStates | 2 |
ArrayBufferContents | 0 |
LayoutCount | 17 |
RecalcStyleCount | 19 |
LayoutDuration | 123 |
RecalcStyleDuration | 111 |
DevToolsCommandDuration | 43 |
ScriptDuration | 195 |
V8CompileDuration | 2 |
TaskDuration | 969 |
TaskOtherDuration | 495 |
ThreadTime | 1 |
ProcessTime | 1 |
JSHeapUsedSize | 5929244 |
JSHeapTotalSize | 9986048 |
FirstMeaningfulPaint | 870 |
Name | Display Time | X | Y | Width | Height |
---|---|---|---|---|---|
LargestImage (logo_proantic_2024.png) | 466 ms | 75 | 15 | 69 | 69 |
<img alt="logo-proantic" src="https://www.proantic.com/ico/logo_proantic_2024.png" style="width: 69px;height: 100%;margin-right: 10px;"> | |||||
Heading | 966 ms | 300 | 275 | 1050 | 44 |
<h1></h1> | |||||
LargestContentfulPaint | 966 ms | 300 | 275 | 1050 | 44 |
<h1></h1> |
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/2.0 |
Total requests | 42 |
Total domains | 8 |
Total transfer size | 2.2 MB |
Total content size | 3.9 MB |
Responses missing compression | 15 |
Number of cookies | 0 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 42 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 117.4 KB | 895.1 KB | 1 |
css | 0 b | 78.4 KB | 382.3 KB | 8 |
javascript | 0 b | 319.4 KB | 1022.7 KB | 7 |
image | 0 b | 970.8 KB | 965.1 KB | 15 |
font | 0 b | 770.8 KB | 766.6 KB | 11 |
Total | 0 b | 2.2 MB | 3.9 MB | 42 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
www.proantic.com | 1.641 s | 1.9 MB | 2.9 MB | 33 |
ajax.googleapis.com | 35 ms | 30.9 KB | 87.4 KB | 1 |
cdnjs.cloudflare.com | 51 ms | 56.5 KB | 247.7 KB | 1 |
www.googletagmanager.com | 61 ms | 116.0 KB | 338.8 KB | 1 |
cdn.jsdelivr.net | 34 ms | 2.3 KB | 4.3 KB | 1 |
cdn-images.mailchimp.com | 11 ms | 1.2 KB | 2.0 KB | 1 |
cse.google.com | 54 ms | 4.0 KB | 8.9 KB | 1 |
www.google.com | 80 ms | 105.0 KB | 334.0 KB | 3 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 1 week | 1 year |
Last modified | 19 hours | 18 weeks | 15 years |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 10.3 KB | 2 |
javascript | 94.7 KB | 1 |
image | 88.5 KB | 1 |
font | 0 b | 0 |
Total | 193.5 KB | 4 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 10.3 KB | 2 |
javascript | 98.7 KB | 2 |
image | 88.5 KB | 1 |
font | 0 b | 0 |
Total | 197.5 KB | 5 |
Render blocking information directly from Chrome.
Blocking | In body parser blocking | Potentially blocking |
---|---|---|
5 | 3 | 0 |
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 | 181 | |
Max Potential First Input Delay | 174 | |
Long Tasks before First Paint | 0 | 0 |
Long Tasks before First Contentful Paint | 0 | 0 |
Long Tasks before Largest Contentful Paint | 2 | 259 |
Long Tasks after Load Event End | 0 | 0 |
Total Long Tasks | 4 | 381 |
CPU last long task happened at 1.047 s
name | startTime | duration | containerId | containerName | containerSrc | containerType |
---|---|---|---|---|---|---|
self | 588 | 174 | window | |||
self | 763 | 85 | window | |||
self | 963 | 71 | window | |||
self | 1047 | 51 | window |
Calculated using Tracium.
Categories (ms) | |
---|---|
parseHTML | 346 |
styleLayout | 233 |
paintCompositeRender | 17 |
scriptParseCompile | 2 |
scriptEvaluation | 177 |
garbageCollection | 10 |
other | 172 |
Events (ms) | |
---|---|
ParseHTML | 209 |
HTMLDocumentParser::MaybeFetchQueuedPreloads | 129 |
Layout | 122 |
RunTask | 115 |
UpdateLayoutTree | 110 |
v8.run | 85 |
FunctionCall | 56 |
EventDispatch | 23 |
PrePaint | 14 |
Paint | 13 |
ParseAuthorStyleSheet | 11 |
Tool/domain | Time (ms) |
---|---|
Google Tag Manager | 78.7 |
Google CDN | 36.7 |
Other Google APIs/SDKs | 41.7 |
Cloudflare CDN | 28.5 |
www.proantic.com | 25.9 |
Third party requests categorised by Third party web version 0.26.2.
Category | Requests |
---|---|
cdn | 3 |
survelliance | 6 |
tag-manager | 1 |
marketing | 1 |
utility | 4 |
Category | Number of tools |
---|---|
cdn | 3 |
survelliance | 3 |
tag-manager | 1 |
marketing | 1 |
utility | 1 |
Calculated using .*proantic.* (use --firstParty
to configure).
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 117.4 KB | 895.1 KB | 1 |
css | 0 b | 66.9 KB | 334.6 KB | 5 |
javascript | 0 b | 15.0 KB | 47.2 KB | 1 |
image | 0 b | 970.8 KB | 965.1 KB | 15 |
font | 0 b | 770.8 KB | 766.6 KB | 11 |
Total | N/A | 1.9 MB | 2.9 MB | 33 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 0 b | 0 b | 0 |
css | 0 b | 11.5 KB | 47.7 KB | 3 |
javascript | 0 b | 304.4 KB | 975.5 KB | 6 |
image | 0 b | 0 b | 0 b | 0 |
font | 0 b | 0 b | 0 b | 0 |
Total | N/A | 315.9 KB | 1023.2 KB | 9 |
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 2.68 (foreground color: #bc9956, background color: #ffffff, font size: 24.0pt (32px), font weight: normal). Expected contrast ratio of 3:1
| |
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
| |
Landmarks should have a unique role or role/label/title (i.e. accessible name) combination (cat.semantics,best-practice) - landmark-unique | Ensure landmarks are unique |
Fix any of the following:
The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable
| |
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
|