Mobile 375 × 812

Desktop 1440 × 900

Score: 59 / 100
Based on 6 categories, 0 sections
Room to improve — your 8.1s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Major barriers for users with disabilities — up to 15% of your audience.
Good server performance with room for optimization.
Strong compliance posture across regulations.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
Cookie '__tad' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
No favicon or icon links detected
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/00542843-da58-4a34-8d9d-885a39a8ed5f)<a href="https://beavercheck.com/results/00542843-da58-4a34-8d9d-885a39a8ed5f"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fabovedomains.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fabovedomains.comThis badge auto-updates with your latest scan result.
Your site has several issues that may be affecting user experience and business outcomes. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
5 barrier(s) likely increasing bounce by ~34%.
Page takes 8.1s to load
+12% bounceUsers abandon at ~3s — you're 5.6s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 932ms
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
No viewport meta tag
+15% bounceMobile browsers render at desktop width and shrink — text unreadable, tap targets miniature
Fix: Add <meta name="viewport" content="width=device-width, initial-scale=1">
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
AUD 385 investment → AUD 7,965/month returns + AUD 50,000,000 risk avoided
AUD 385
4h · 5 findings
AUD 7,965 /mo
~AUD 95,578 / year
AUD 50,000,000
if kept compliant
AUD 220 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
3.5 developer hours at A$110/hr
Based on Australia rates (A$110/hr)
Start here for the best return on investment
AUD 4,166,668 / month at risk
~AUD 50,000,017 / year if left unfixed
AUD 50,000,000
AUD 1.39 /mo
11264.2 MB/mo × 0.123 AUD/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
7.83 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
8.13 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
932 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
7.83 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
25.26 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/monetize.png | 410.5 KiB | 379.7 KiB |
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/brokerage.jpg | 93.0 KiB | 53.9 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-addme1.png | 36.3 KiB | 35.2 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-beontop1.png | 12.9 KiB | 11.3 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-help1.png | 9.7 KiB | 7.4 KiB |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img | www.above.com/img/icann-accredited-trans-56.png | 4.6 KiB | 4.1 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| abovedomains.com/ | 1.2 s |
| www.above.com/ | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.above.com/javascript/jquery-ui.js | 425.6 KiB | 142.8 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| ka-p.fontawesome.com/releases/v6.7.2/css/pro.min.css?token=61d644614c | 80.6 KiB | 80.2 KiB |
| stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css | 24.4 KiB | 23.4 KiB |
| www.above.com/css/aboveGlobal.css?1775627195 | 11.3 KiB | 10.5 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.above.com/javascript/jquery-ui.js | 425.6 KiB | 373.8 KiB |
| www.gstatic.com/recaptcha/releases/gTpTIWhbKpxADzTzkcabhXN4/recaptcha__en.js | 361.8 KiB | 177.0 KiB |
| www.googletagmanager.com/gtag/js?id=AW-318991084 | 134.0 KiB | 102.3 KiB |
| www.googletagmanager.com/gtag/js?id=G-DQB7CZVNQD&cx=c>m=4e64f0 | 176.0 KiB | 69.8 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-KKGWZHB | 138.0 KiB | 62.7 KiB |
| www.googletagmanager.com/gtag/js?id=AW-318991084&cx=c>m=4e64f0 | 134.0 KiB | 61.0 KiB |
| ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js | 63.0 KiB | 56.7 KiB |
| www.above.com/js/jquery211.js | 82.3 KiB | 46.1 KiB |
| connect.facebook.net/en_US/fbevents.js | 96.3 KiB | 33.7 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 2.7 s |
| Other | 695 ms |
| Script Parsing & Compilation | 487 ms |
| Style & Layout | 448 ms |
| Parse HTML & CSS | 131 ms |
| Garbage Collection | 92 ms |
| Rendering | 71 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/monetize.png |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-addme1.png |
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/brokerage.jpg |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-beontop1.png |
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg | www.above.com/img/above-logo-466.png |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-help1.png |
ul > li > a > img ul > li > a > img | www.above.com/img/auda-logo-white.svg |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-trillion.svg |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-drop.png |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img | www.above.com/img/ISM_ISO27001_white.svg |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img | www.above.com/img/icann-accredited-trans-56.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Prices displayed in USD. See all prices here div.contentdiv2 > div.contentdiv2_pad > div.container > div.text-center |
here div.contentdiv2_pad > div.container > div.text-center > a.grey |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
List your domain names div.container > div.contenttext3a > p > a.newbluelink |
These are opportunities to improve the legibility of your content.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
topsection > nav.navbar > div.container > a.navbar-brand topsection > nav.navbar > div.container > a.navbar-brand |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.container > div.row > div.col-lg-2 > a.mr-3 div.container > div.row > div.col-lg-2 > a.mr-3 |
div.container > div.row > div.col-lg-2 > a.mr-3 div.container > div.row > div.col-lg-2 > a.mr-3 |
div.container > div.row > div.col-lg-2 > a.mr-3 div.container > div.row > div.col-lg-2 > a.mr-3 |
div.container > div.row > div.col-lg-2 > a div.container > div.row > div.col-lg-2 > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Escrow div.row > div.col-md-3 > div.footerlinks > a |
FAQs div.row > div.col-md-3 > div.footerlinks > a |
Domain Brokerage div.row > div.col-md-3 > div.footerlinks > a |
Domain Acquisition div.row > div.col-md-3 > div.footerlinks > a |
About Us div.row > div.col-md-3 > div.footerlinks > a |
Our Team div.row > div.col-md-3 > div.footerlinks > a |
Contact Us div.row > div.col-md-3 > div.footerlinks > a |
Site Map div.row > div.col-md-3 > div.footerlinks > a |
Careers div.row > div.col-md-3 > div.footerlinks > a |
Log In div.row > div.col-md-3 > div.footerlinks > a |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| AttributionReporting | connect.facebook.net/en_US/fbevents.js line 279, col 769 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| www.above.com/registrar/domain-pricing.html | here |
| www.above.com/monetization.html | Learn More |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.74 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.41 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
34 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
3.06 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
5.47 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/monetize.png | 410.5 KiB | 399.7 KiB |
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/brokerage.jpg | 93.0 KiB | 75.9 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-addme1.png | 36.3 KiB | 36.0 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-beontop1.png | 12.9 KiB | 12.4 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-help1.png | 9.7 KiB | 8.9 KiB |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-drop.png | 5.4 KiB | 4.7 KiB |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img | www.above.com/img/icann-accredited-trans-56.png | 4.6 KiB | 4.2 KiB |
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg | www.above.com/img/above-logo-466.png | 5.5 KiB | 4.1 KiB |
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| abovedomains.com/ | 672 ms |
| www.above.com/ | 0.0 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.above.com/javascript/jquery-ui.js | 425.6 KiB | 142.8 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| ka-p.fontawesome.com/releases/v6.7.2/css/pro.min.css?token=61d644614c | 80.6 KiB | 80.2 KiB |
| stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css | 24.4 KiB | 23.0 KiB |
| www.above.com/css/aboveGlobal.css?1775627195 | 11.3 KiB | 10.5 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.above.com/javascript/jquery-ui.js | 425.6 KiB | 373.8 KiB |
| www.gstatic.com/recaptcha/releases/gTpTIWhbKpxADzTzkcabhXN4/recaptcha__en.js | 361.8 KiB | 177.0 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16892477374&cx=c>m=4e64f1h2&bs=ctrl | 134.0 KiB | 102.3 KiB |
| www.googletagmanager.com/gtag/js?id=G-DQB7CZVNQD&cx=c>m=4e64f1h2&bs=ctrl | 176.0 KiB | 69.5 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-KKGWZHB | 138.0 KiB | 64.2 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16784246920&cx=c>m=4e64f1h2&bs=ctrl | 146.2 KiB | 62.8 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16892477374 | 134.0 KiB | 62.3 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16892394087&cx=c>m=4e64f1h2&bs=ctrl | 134.0 KiB | 62.3 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16777691387&cx=c>m=4e64f1h2&bs=ctrl | 134.0 KiB | 61.0 KiB |
| ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js | 63.0 KiB | 56.7 KiB |
| www.above.com/js/jquery211.js | 82.3 KiB | 46.1 KiB |
| connect.facebook.net/en_US/fbevents.js | 96.3 KiB | 34.5 KiB |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/monetize.png |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-addme1.png |
div.row > div.col-md-4 > div.pt-4 > img div.row > div.col-md-4 > div.pt-4 > img | www.above.com/img/brokerage.jpg |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-beontop1.png |
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg | www.above.com/img/above-logo-466.png |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-help1.png |
ul > li > a > img ul > li > a > img | www.above.com/img/auda-logo-white.svg |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-trillion.svg |
ul > li > a > img ul > li > a > img | www.above.com/img/logo-drop.png |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img | www.above.com/img/ISM_ISO27001_white.svg |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img | www.above.com/img/icann-accredited-trans-56.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
About div#navbarSupportedContent > ul.navbar-nav > li.nav-item > a#navbarDropdown |
Log In div#navbarSupportedContent > ul.navbar-nav > li.nav-item > a#navbarDropdownMenuLink |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Prices displayed in USD. See all prices here div.contentdiv2 > div.contentdiv2_pad > div.container > div.text-center |
here div.contentdiv2_pad > div.container > div.text-center > a.grey |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
List your domain names div.container > div.contenttext3a > p > a.newbluelink |
These are opportunities to improve the legibility of your content.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
topsection > nav.navbar > div.container > a.navbar-brand topsection > nav.navbar > div.container > a.navbar-brand |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.footerlogos > ul > li > a div.footerlogos > ul > li > a |
div.container > div.row > div.col-lg-2 > a.mr-3 div.container > div.row > div.col-lg-2 > a.mr-3 |
div.container > div.row > div.col-lg-2 > a.mr-3 div.container > div.row > div.col-lg-2 > a.mr-3 |
div.container > div.row > div.col-lg-2 > a.mr-3 div.container > div.row > div.col-lg-2 > a.mr-3 |
div.container > div.row > div.col-lg-2 > a div.container > div.row > div.col-lg-2 > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Escrow div.row > div.col-md-3 > div.footerlinks > a |
FAQs div.row > div.col-md-3 > div.footerlinks > a |
Domain Brokerage div.row > div.col-md-3 > div.footerlinks > a |
Domain Acquisition div.row > div.col-md-3 > div.footerlinks > a |
About Us div.row > div.col-md-3 > div.footerlinks > a |
Our Team div.row > div.col-md-3 > div.footerlinks > a |
Contact Us div.row > div.col-md-3 > div.footerlinks > a |
Site Map div.row > div.col-md-3 > div.footerlinks > a |
Careers div.row > div.col-md-3 > div.footerlinks > a |
Log In div.row > div.col-md-3 > div.footerlinks > a |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| AttributionReporting | connect.facebook.net/en_US/fbevents.js line 279, col 769 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| www.above.com/registrar/domain-pricing.html | here |
| www.above.com/monetization.html | Learn More |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav.navbar > div.container > a.navbar-brand > img.logoimg nav.navbar > div.container > a.navbar-brand > img.logoimg |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
ul > li > a > img ul > li > a > img |
div.footerlogos > ul > li > img div.footerlogos > ul > li > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback