Mobile 375 × 812

Desktop 1440 × 900

Score: 73 / 100
Based on 8 categories, 0 sections
Room to improve — your 13.9s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Mostly compliant — a few items need attention.
Rich content metadata — your pages look great everywhere.
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.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
Page weighs 20.3 MB (8.3 MB transferred)
Performance issues directly impact user engagement and conversion rates.
No <main> landmark found
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
282 third-party resources (100% of weight)
Performance issues directly impact user engagement and conversion rates.
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/edb0ffff-8e0d-4e13-8c28-270c487d6cb6)<a href="https://beavercheck.com/results/edb0ffff-8e0d-4e13-8c28-270c487d6cb6"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fharley-davidson.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fharley-davidson.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Your LCP of 13.9s exceeds Google's 2.5s 'Good' threshold and the 2 performance issues below directly contribute to it. 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.
6 barrier(s) likely increasing bounce by ~28%.
Page takes 13.9s to load
+12% bounceUsers abandon at ~3s — you're 11.4s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 3.5s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
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
Content is hard to read
+2% bounceGraduate-level reading difficulty — limits the addressable audience for product or blog pages
Fix: Shorten sentences; replace jargon with plain language; target Flesch ease ≥60
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
2 broken link(s) on the page
+3% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
€553 investment → €924/month returns + EUR 120,500,000 risk avoided
€553
6h · 5 findings
€924 /mo
~€11,087 / year
EUR 120,500,000
if kept compliant
€85 — 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.
6.5 developer hours at €85/hr
Based on European Union rates (€85/hr)
Start here for the best return on investment
€10,041,669 / month at risk
~€120,500,023 / year if left unfixed
€120,500,000
+9 more
€1.93 /mo
26032.8 MB/mo × 0.074 EUR/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 4 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.
2.25 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
13.88 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
3.46 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.017
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
7.11 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.
39.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.
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.
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.
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.
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 | |
|---|---|---|---|
Man in a black Harley-Davidson baseball jersey shirt with white pinstripes article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/1yGvbF4rHzCV46AdYTMmBf/2a042392e62... | 208.0 KiB | 153.3 KiB |
Woman in a black Harley-Davidson zip up jacket with orange and white stripe acr… article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/6TO7KiK7TE4JiD6EIIUIeK/d68d4bcc11d... | 164.7 KiB | 110.0 KiB |
A man wearing a graphic t-shirt with Dickies and Harley-Davidson logos on backs… li.md:ig-flex-1 > article.ig-relative > div.ig-w-full > img.ig-object-cover | /ctfasset/5vy1mse9fkav/1kjMk8hYLyL1OGZmORxyjt/05c69f5ec33... | 156.6 KiB | 101.8 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/0eFU6aA7Vh0XMB2A2rW8O/9cc8cdb57b97... | 139.3 KiB | 99.9 KiB |
p and a new arrivals seat article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/7Iv2FtzDwAarrUDtthq39E/218327df10a... | 111.1 KiB | 56.4 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/DJsPzbaWd3IfC9gHMwh9R/88b0b23c886e... | 93.7 KiB | 54.3 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/5QgeupARI9WfHghMUBJGIL/8b6a02afcc0... | 89.0 KiB | 49.5 KiB |
Low Rider S 2026 acabada en negro y refinada hasta la perfección div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/4InKfnwZnCzuNtQVM9T4GY/22158e0418c... | 100.5 KiB | 44.2 KiB |
2026 Street Glide 3 Limited Riding Shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/3pq5ygYIQritI36epAUnJ0/4826635dd81... | 114.3 KiB | 44.1 KiB |
2026 road glide riding shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/3WBXzbDbOubugzgUinN8Il/65f4b63a9bb... | 109.8 KiB | 39.6 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2uKDhIYlxBtdVPd4NtQnmk/3d861376298... | 76.6 KiB | 37.2 KiB |
div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/1LNoExNHy8LEDQmopJzs8j/d204ddb5e24... | 105.6 KiB | 35.4 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/3RzQVv6OLm33d8e7c65DKm/0b3554d73ed... | 70.0 KiB | 30.6 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5XVRdX5Sf4shRLFmhCxhpR/f89bfc71304... | 61.0 KiB | 21.6 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/4QTWsiaK1vmgvsK19QoMYu/593c73e9df4... | 60.5 KiB | 21.1 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/7JQVrPYiXIPUhlbZWaxDW6/9d0543bcd92... | 59.9 KiB | 20.7 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/3YxmRBddMur0esyuReLdL6/92320651981... | 58.8 KiB | 20.3 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/0bhWIz1Y7zJwzeRnDFfhX/3fce79f84806... | 58.7 KiB | 20.2 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/543OgZVVRIRhEIfTEAscTw/e8181a86456... | 53.4 KiB | 18.3 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6BxqdHfJk3saYNed6e0nMi/591581b7a83... | 49.9 KiB | 17.2 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2XPgBMiOgCu9715UnwnLcE/5986931eb63... | 45.5 KiB | 15.6 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5iYwgYgWZ6tJFmljtnDoXL/570699f4c55... | 43.7 KiB | 15.1 KiB |
2026-cvo-street-glide-limited-m64-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/2Za6FpXn8YFDjhopUYlYNg/e28edaa34cb... | 54.5 KiB | 14.8 KiB |
Joella Riding Boot para mujer, CE article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/1JICzLFqHCmqQ0SXAzvI5f/f87d9770ead... | 40.8 KiB | 14.0 KiB |
Joella Riding Boot para mujer, CE article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/2k40hPnF8xWwfoTm7WbwZT/2c7495c0496... | 40.5 KiB | 14.0 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/1g1oRQo5hFguTMREQLf4Lf/f625a406beb... | 39.9 KiB | 13.7 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/0eFU6aA7Vh0XMB2A2rW8O/9cc8cdb57b97... | 17.1 KiB | 13.4 KiB |
H-D TECH Reflective Ivy Cap para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/ULuAQVkHX1TygkwfmtVI5/575e44c79d1f... | 37.1 KiB | 12.7 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6Iqkg3C7r1zde2UUXOpBZI/0079a30ccda... | 36.6 KiB | 12.6 KiB |
div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/1LNoExNHy8LEDQmopJzs8j/d204ddb5e24... | 17.9 KiB | 12.2 KiB |
GILFORD RIDE CE / NEGRA PARA HOMBRE article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/7bkuLqzQhbtbOYMMOv0sPX/782f952b1be... | 35.2 KiB | 12.2 KiB |
2026 road glide riding shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/3WBXzbDbOubugzgUinN8Il/65f4b63a9bb... | 17.1 KiB | 11.5 KiB |
2026-cvo-street-glide-m63-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/6pFnefVTf5cv2ajh5KsNIZ/a41b8e3c17f... | 49.9 KiB | 10.4 KiB |
2026 Street Glide 3 Limited Riding Shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/3pq5ygYIQritI36epAUnJ0/4826635dd81... | 15.6 KiB | 10.0 KiB |
2026-cvo-road-glide-st-m65b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/30NnCUQL6PM2CkMX8xtpvv/390bef42d9b... | 47.7 KiB | 8.2 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/3RzQVv6OLm33d8e7c65DKm/0b3554d73ed... | 11.9 KiB | 8.1 KiB |
Woman in a black Harley-Davidson zip up jacket with orange and white stripe acr… article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/6TO7KiK7TE4JiD6EIIUIeK/d68d4bcc11d... | 10.5 KiB | 7.5 KiB |
Man in a black Harley-Davidson baseball jersey shirt with white pinstripes article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/1yGvbF4rHzCV46AdYTMmBf/2a042392e62... | 9.7 KiB | 6.7 KiB |
2026-cvo-street-glide-limited-m64-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/2Za6FpXn8YFDjhopUYlYNg/e28edaa34cb... | 9.1 KiB | 6.6 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/3YxmRBddMur0esyuReLdL6/92320651981... | 10.3 KiB | 6.6 KiB |
div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/1LNoExNHy8LEDQmopJzs8j/d204ddb5e24... | 8.1 KiB | 6.5 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/0eFU6aA7Vh0XMB2A2rW8O/9cc8cdb57b97... | 7.5 KiB | 6.5 KiB |
A man wearing a graphic t-shirt with Dickies and Harley-Davidson logos on backs… li.md:ig-flex-1 > article.ig-relative > div.ig-w-full > img.ig-object-cover | /ctfasset/5vy1mse9fkav/1kjMk8hYLyL1OGZmORxyjt/05c69f5ec33... | 9.4 KiB | 6.4 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5XVRdX5Sf4shRLFmhCxhpR/f89bfc71304... | 10.1 KiB | 6.3 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2uKDhIYlxBtdVPd4NtQnmk/3d861376298... | 10.0 KiB | 6.3 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/543OgZVVRIRhEIfTEAscTw/e8181a86456... | 10.0 KiB | 6.2 KiB |
2026-road-glide-limited-m76-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3atbUi33IcX7aIyRugjv8P/ef9fd6802d8... | 46.0 KiB | 6.2 KiB |
2026 road glide riding shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/3WBXzbDbOubugzgUinN8Il/65f4b63a9bb... | 7.7 KiB | 6.2 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/DJsPzbaWd3IfC9gHMwh9R/88b0b23c886e... | 9.9 KiB | 6.1 KiB |
2026-cvo-road-glide-st-m65b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/30NnCUQL6PM2CkMX8xtpvv/390bef42d9b... | 8.4 KiB | 5.9 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/5QgeupARI9WfHghMUBJGIL/8b6a02afcc0... | 9.5 KiB | 5.8 KiB |
2026-street-glide-m75b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/xVcwhFJcivRzl8zNDb9fl/75e7205b8727... | 8.3 KiB | 5.8 KiB |
2026-road-glide-m79b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3wVGdXdzgmmTiqABYF7RjD/9a871b7db7d... | 8.2 KiB | 5.7 KiB |
2026-cvo-street-glide-m63-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/6pFnefVTf5cv2ajh5KsNIZ/a41b8e3c17f... | 8.1 KiB | 5.6 KiB |
2026 Street Glide 3 Limited Riding Shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/3pq5ygYIQritI36epAUnJ0/4826635dd81... | 7.0 KiB | 5.4 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2XPgBMiOgCu9715UnwnLcE/5986931eb63... | 9.2 KiB | 5.4 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/7JQVrPYiXIPUhlbZWaxDW6/9d0543bcd92... | 9.1 KiB | 5.4 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/3RzQVv6OLm33d8e7c65DKm/0b3554d73ed... | 6.3 KiB | 5.3 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6BxqdHfJk3saYNed6e0nMi/591581b7a83... | 9.1 KiB | 5.3 KiB |
2026-cvo-street-glide-st-m67b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/CygKhNHbfau3UUMt7HCwg/10dcfc3395d0... | 7.7 KiB | 5.2 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5iYwgYgWZ6tJFmljtnDoXL/570699f4c55... | 8.8 KiB | 5.1 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/4QTWsiaK1vmgvsK19QoMYu/593c73e9df4... | 8.8 KiB | 5.0 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5XVRdX5Sf4shRLFmhCxhpR/f89bfc71304... | 5.8 KiB | 4.9 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/543OgZVVRIRhEIfTEAscTw/e8181a86456... | 5.8 KiB | 4.8 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/3YxmRBddMur0esyuReLdL6/92320651981... | 5.8 KiB | 4.8 KiB |
2026-street-glide-m75b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/xVcwhFJcivRzl8zNDb9fl/75e7205b8727... | 44.6 KiB | 4.8 KiB |
2026-cvo-street-glide-limited-m64-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/2Za6FpXn8YFDjhopUYlYNg/e28edaa34cb... | 5.4 KiB | 4.8 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2uKDhIYlxBtdVPd4NtQnmk/3d861376298... | 5.7 KiB | 4.8 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/0bhWIz1Y7zJwzeRnDFfhX/3fce79f84806... | 8.5 KiB | 4.7 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2XPgBMiOgCu9715UnwnLcE/5986931eb63... | 5.6 KiB | 4.6 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/7JQVrPYiXIPUhlbZWaxDW6/9d0543bcd92... | 5.5 KiB | 4.6 KiB |
2026-street-glide-m75b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/xVcwhFJcivRzl8zNDb9fl/75e7205b8727... | 5.2 KiB | 4.6 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5iYwgYgWZ6tJFmljtnDoXL/570699f4c55... | 5.4 KiB | 4.5 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/DJsPzbaWd3IfC9gHMwh9R/88b0b23c886e... | 5.4 KiB | 4.5 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6BxqdHfJk3saYNed6e0nMi/591581b7a83... | 5.4 KiB | 4.5 KiB |
2026-cvo-road-glide-st-m65b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/30NnCUQL6PM2CkMX8xtpvv/390bef42d9b... | 5.1 KiB | 4.5 KiB |
2026-road-glide-m79b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3wVGdXdzgmmTiqABYF7RjD/9a871b7db7d... | 5.1 KiB | 4.5 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/5QgeupARI9WfHghMUBJGIL/8b6a02afcc0... | 5.4 KiB | 4.4 KiB |
2026-road-glide-m79b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3wVGdXdzgmmTiqABYF7RjD/9a871b7db7d... | 44.2 KiB | 4.4 KiB |
2026-cvo-street-glide-m63-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/6pFnefVTf5cv2ajh5KsNIZ/a41b8e3c17f... | 5.0 KiB | 4.4 KiB |
2026-cvo-street-glide-st-m67b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/CygKhNHbfau3UUMt7HCwg/10dcfc3395d0... | 4.9 KiB | 4.2 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/4QTWsiaK1vmgvsK19QoMYu/593c73e9df4... | 5.2 KiB | 4.2 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/0bhWIz1Y7zJwzeRnDFfhX/3fce79f84806... | 5.1 KiB | 4.2 KiB |
p and a new arrivals seat article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/7Iv2FtzDwAarrUDtthq39E/218327df10a... | 7.2 KiB | 4.2 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/1g1oRQo5hFguTMREQLf4Lf/f625a406beb... | 7.9 KiB | 4.2 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/1g1oRQo5hFguTMREQLf4Lf/f625a406beb... | 5.1 KiB | 4.2 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6Iqkg3C7r1zde2UUXOpBZI/0079a30ccda... | 5.0 KiB | 4.0 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 |
|---|---|
| harley-davidson.com/ | 810 ms |
| www.harley-davidson.com/ | 841 ms |
| www.harley-davidson.com/locale/index.html | 150 ms |
| www.harley-davidson.com/es/es/index.html | 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.
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 |
|---|---|---|
| login.harley-davidson.com/hd/css/base-gigya.css | 36.7 KiB | 36.7 KiB |
| www.harley-davidson.com/contentapp/_next/static/css/92de2ebe8aff86b2.css | 32.2 KiB | 29.6 KiB |
| www.harley-davidson.com/global/_next/static/css/2a32b7a259aaf37d.css | 25.9 KiB | 23.4 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
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 | 6.4 s |
| Other | 1.8 s |
| Script Parsing & Compilation | 1.2 s |
| Style & Layout | 792 ms |
| Rendering | 273 ms |
| Garbage Collection | 189 ms |
| Parse HTML & CSS | 183 ms |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| login.harley-davidson.com/hd/css/base-gigya.css | 37.2 KiB | 4.8 KiB |
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.
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 |
|---|
CUSTOMIZE div.osano-cm-window > div#4127191b-01e6-464e-9d01-2041f147f49c > div.osano-cm-dialog__buttons > button.osano-cm-manage |
ACCEPT ALL div.osano-cm-window > div#4127191b-01e6-464e-9d01-2041f147f49c > div.osano-cm-dialog__buttons > button.osano-cm-accept-all |
REJECT NON-ESSENTIAL div.osano-cm-window > div#4127191b-01e6-464e-9d01-2041f147f49c > div.osano-cm-dialog__buttons > button.osano-cm-denyAll |
Envío gratis a partir de 50€ y devoluciones gratis - div.swiper-wrapper > div.swiper-slide > p > b |
Comprar Ahora div.swiper-slide > p > a.banner-entry-hyperlink > b |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
Buscar un concesionario div.ig-h-[64px] > a > button.ig-flex > span |
REGÍSTRATE POR CORREO ELECTRÓNICO div.newsletter-signup-body > button.ig-group > div.ig-flex > span.ig-transition-all |
These are opportunities to improve the legibility of your content.
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
NUEVA STREET GLIDE™ 3 LIMITED 2026 div.swiper-slide > div.ig-absolute > div.ig-space-y-2 > h3.ig-text-[1.5rem] |
CVO™ STREET GLIDE™ LIMITED div.swiper-slide > article.BikeCard > a.!ig-no-underline > h4.ig-text-[0.875rem] |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|
body > img body > img |
body > img body > img |
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.
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Mapa del sitio web
Aviso legalTérminos y condiciones de ventaPolítica de privac… footer.footer > div.footer-container > div.section-container > ul.mobile-legal-links |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
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 |
|---|
Teal Thunder/Vivid Black div.swiper-wrapper > div.swiper-slide > div.ig-flex > button.ig-w-5 |
chevron-icon-right div.swiper-slide > article.BikeCard > div#colorSwatchGroup > button.disabled:ig-opacity-50 |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
España - Español div.bottom-section-container > div.bottom-section-sub-container > div.gc-relative > button.gc-flex |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.harley-davidson.com/us/en/content/membership.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 |
|---|
body > img body > img |
body > img body > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Link Account
… div.d-flex > div.js-registration-hog-section > div.w-100 > a.cta-button |
Log in to see your account. div.gigya-screen > div.row > div.col > a.pb-5 |
Gestionar preferencias de cookies ul.mobile-legal-links > ul > li > a.ig-group |
To appear in search results, crawlers need access to your app.
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.
1.08 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.66 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
240 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.015
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.70 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.
9.58 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.
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.
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.
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.
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.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/61otopSIh6lfZITZLKonTk/d575eee8fe1... | 469.1 KiB | 319.2 KiB |
2026 road glide riding shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/6OIaJiTeOJWNX5jqOmAYKn/0b16a4b4f6a... | 328.6 KiB | 178.7 KiB |
Man in a black Harley-Davidson baseball jersey shirt with white pinstripes article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/1yGvbF4rHzCV46AdYTMmBf/2a042392e62... | 107.2 KiB | 86.3 KiB |
2026 nightster special beauty shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/55GHVs2iN8pM2yJ3kAuj7n/d9c9380c7fa... | 177.8 KiB | 71.4 KiB |
Woman in a black Harley-Davidson zip up jacket with orange and white stripe acr… article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/6TO7KiK7TE4JiD6EIIUIeK/d68d4bcc11d... | 86.9 KiB | 66.1 KiB |
A man wearing a graphic t-shirt with Dickies and Harley-Davidson logos on backs… li.md:ig-flex-1 > article.ig-relative > div.ig-w-full > img.ig-object-cover | /ctfasset/5vy1mse9fkav/1kjMk8hYLyL1OGZmORxyjt/05c69f5ec33... | 84.5 KiB | 63.7 KiB |
p and a new arrivals seat article.ig-relative > div.ig-w-full > a.CardImageLink > img.ig-object-cover | /ctfasset/5vy1mse9fkav/7Iv2FtzDwAarrUDtthq39E/218327df10a... | 111.1 KiB | 62.8 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/0eFU6aA7Vh0XMB2A2rW8O/9cc8cdb57b97... | 45.9 KiB | 30.9 KiB |
Low Rider S 2026 acabada en negro y refinada hasta la perfección div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/4InKfnwZnCzuNtQVM9T4GY/22158e0418c... | 219.8 KiB | 22.2 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/3RzQVv6OLm33d8e7c65DKm/0b3554d73ed... | 27.2 KiB | 12.2 KiB |
2026-cvo-street-glide-limited-m64-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/2Za6FpXn8YFDjhopUYlYNg/e28edaa34cb... | 20.5 KiB | 10.6 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/DJsPzbaWd3IfC9gHMwh9R/88b0b23c886e... | 25.6 KiB | 10.6 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/5QgeupARI9WfHghMUBJGIL/8b6a02afcc0... | 24.4 KiB | 9.4 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2uKDhIYlxBtdVPd4NtQnmk/3d861376298... | 23.7 KiB | 8.7 KiB |
2026-cvo-street-glide-m63-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/6pFnefVTf5cv2ajh5KsNIZ/a41b8e3c17f... | 18.5 KiB | 8.6 KiB |
2026-cvo-road-glide-st-m65b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/30NnCUQL6PM2CkMX8xtpvv/390bef42d9b... | 18.3 KiB | 8.3 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/3YxmRBddMur0esyuReLdL6/92320651981... | 23.1 KiB | 8.1 KiB |
2026-street-glide-m75b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/xVcwhFJcivRzl8zNDb9fl/75e7205b8727... | 17.6 KiB | 7.7 KiB |
2026-road-glide-m79b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3wVGdXdzgmmTiqABYF7RjD/9a871b7db7d... | 17.4 KiB | 7.4 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5XVRdX5Sf4shRLFmhCxhpR/f89bfc71304... | 22.1 KiB | 7.0 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/0eFU6aA7Vh0XMB2A2rW8O/9cc8cdb57b97... | 7.5 KiB | 6.5 KiB |
2026-cvo-street-glide-st-m67b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/CygKhNHbfau3UUMt7HCwg/10dcfc3395d0... | 16.3 KiB | 6.4 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/543OgZVVRIRhEIfTEAscTw/e8181a86456... | 20.9 KiB | 5.9 KiB |
2026-road-glide-limited-m76-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3atbUi33IcX7aIyRugjv8P/ef9fd6802d8... | 15.6 KiB | 5.7 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/3RzQVv6OLm33d8e7c65DKm/0b3554d73ed... | 6.3 KiB | 5.3 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/7JQVrPYiXIPUhlbZWaxDW6/9d0543bcd92... | 20.3 KiB | 5.3 KiB |
div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/61otopSIh6lfZITZLKonTk/d575eee8fe1... | 5.6 KiB | 5.2 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/4QTWsiaK1vmgvsK19QoMYu/593c73e9df4... | 20.0 KiB | 5.0 KiB |
Screamin' Eagle Lightweight Gloves para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5XVRdX5Sf4shRLFmhCxhpR/f89bfc71304... | 5.8 KiB | 4.9 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/543OgZVVRIRhEIfTEAscTw/e8181a86456... | 5.8 KiB | 4.8 KiB |
H-D Mainstreet Nylon Bomber Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/3YxmRBddMur0esyuReLdL6/92320651981... | 5.8 KiB | 4.8 KiB |
2026-cvo-street-glide-limited-m64-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/2Za6FpXn8YFDjhopUYlYNg/e28edaa34cb... | 5.4 KiB | 4.8 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2uKDhIYlxBtdVPd4NtQnmk/3d861376298... | 5.7 KiB | 4.8 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/2XPgBMiOgCu9715UnwnLcE/5986931eb63... | 5.6 KiB | 4.6 KiB |
2026 road glide riding shot div.swiper-wrapper > div.swiper-slide > div.!ig-w-full > img.ig-w-full | /ctfasset/5vy1mse9fkav/6OIaJiTeOJWNX5jqOmAYKn/0b16a4b4f6a... | 5.0 KiB | 4.6 KiB |
H-D Ace C02 3/4 Helmet article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/7JQVrPYiXIPUhlbZWaxDW6/9d0543bcd92... | 5.5 KiB | 4.6 KiB |
2026-street-glide-m75b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/xVcwhFJcivRzl8zNDb9fl/75e7205b8727... | 5.2 KiB | 4.6 KiB |
Screamin' Eagle Vented Short Sleeve Mechanics Shirt para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/5iYwgYgWZ6tJFmljtnDoXL/570699f4c55... | 5.4 KiB | 4.5 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/DJsPzbaWd3IfC9gHMwh9R/88b0b23c886e... | 5.4 KiB | 4.5 KiB |
Screamin' Eagle 1/4 Zip Fleece Pullover para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6BxqdHfJk3saYNed6e0nMi/591581b7a83... | 5.4 KiB | 4.5 KiB |
2026-cvo-road-glide-st-m65b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/30NnCUQL6PM2CkMX8xtpvv/390bef42d9b... | 5.1 KiB | 4.5 KiB |
2026-road-glide-m79b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/3wVGdXdzgmmTiqABYF7RjD/9a871b7db7d... | 5.1 KiB | 4.5 KiB |
Liberty Eagle Plaid Blowout para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/5QgeupARI9WfHghMUBJGIL/8b6a02afcc0... | 5.4 KiB | 4.4 KiB |
2026-cvo-street-glide-m63-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/6pFnefVTf5cv2ajh5KsNIZ/a41b8e3c17f... | 5.0 KiB | 4.4 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/0bhWIz1Y7zJwzeRnDFfhX/3fce79f84806... | 19.3 KiB | 4.3 KiB |
2026-cvo-street-glide-st-m67b-motorcycle div > a > div.ig-bg-lightest-grey > img.ig-w-full | /ctfasset/5vy1mse9fkav/CygKhNHbfau3UUMt7HCwg/10dcfc3395d0... | 4.9 KiB | 4.2 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/4QTWsiaK1vmgvsK19QoMYu/593c73e9df4... | 5.2 KiB | 4.2 KiB |
H-D Passing Link III Leather Jacket para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/0bhWIz1Y7zJwzeRnDFfhX/3fce79f84806... | 5.1 KiB | 4.2 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.ig-absolute | /ctfasset/5vy1mse9fkav/1g1oRQo5hFguTMREQLf4Lf/f625a406beb... | 5.1 KiB | 4.2 KiB |
Willie G Skull Hat & Tee Gift Set para hombre article.ig-flex > a > div.ig-group/card > img.md:group-hover/card:ig-opacity-0 | /ctfasset/5vy1mse9fkav/6Iqkg3C7r1zde2UUXOpBZI/0079a30ccda... | 5.0 KiB | 4.0 KiB |
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 |
|---|---|
| harley-davidson.com/ | 253 ms |
| www.harley-davidson.com/ | 329 ms |
| www.harley-davidson.com/locale/index.html | 124 ms |
| www.harley-davidson.com/es/es/index.html | 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.
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.
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
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.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| /contentapp/_next/static/chunks/framework.bbbd3b7b847031b... | 357 ms | 281 ms | 2.8 ms |
| /js/gigya.js?apikey=4_Ka4gFzFIBJu_-8-aPyJmIA&lang=en&_=17... | 273 ms | 234 ms | 11 ms |
| Unattributable | 256 ms | 4.1 ms | 0.0 ms |
| www.harley-davidson.com/es/es/index.html | 220 ms | 1.7 ms | 0.1 ms |
| assets.adobedtm.com/1063865e0018/357c73f063e2/launch-4ba3cf219e73.min.js | 209 ms | 169 ms | 24 ms |
| cmp.osano.com/AzytgnSbqoHcM3Ido/5a6c1c68-9204-4c1b-a47e-0a1e8574f2f8/osano.js | 202 ms | 157 ms | 9.6 ms |
| www.harley-davidson.com/global/_next/static/chunks/9477-d41d82768e600b94.js | 188 ms | 35 ms | 3.6 ms |
| www.googletagmanager.com/gtm.js?id=GTM-TM4JSX2 | 154 ms | 128 ms | 16 ms |
| www.harley-davidson.com/contentapp/_next/static/chunks/1979.dc5dbb21305d0bc7.js | 120 ms | 120 ms | 0.2 ms |
| /contentapp/_next/static/chunks/pages/_app-dfbeaf5c03e9e5... | 85 ms | 43 ms | 15 ms |
| www.googletagmanager.com/gtag/js?id=DC-9271999&cx=c>m=4e64k1 | 80 ms | 73 ms | 5.4 ms |
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 | 1.7 s |
| Other | 435 ms |
| Script Parsing & Compilation | 290 ms |
| Style & Layout | 209 ms |
| Rendering | 104 ms |
| Garbage Collection | 48 ms |
| Parse HTML & CSS | 47 ms |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| login.harley-davidson.com/hd/css/base-gigya.css | 37.2 KiB | 4.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 |
|---|---|---|
| login.harley-davidson.com/hd/css/base-gigya.css | 36.7 KiB | 36.7 KiB |
| www.harley-davidson.com/contentapp/_next/static/css/92de2ebe8aff86b2.css | 32.2 KiB | 28.3 KiB |
| www.harley-davidson.com/global/_next/static/css/2a32b7a259aaf37d.css | 25.9 KiB | 22.2 KiB |
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.
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 |
|---|
CUSTOMIZE div.osano-cm-window > div#d9ae98a3-af26-487b-9f78-5026beae6bdb > div.osano-cm-dialog__buttons > button.osano-cm-manage |
ACCEPT ALL div.osano-cm-window > div#d9ae98a3-af26-487b-9f78-5026beae6bdb > div.osano-cm-dialog__buttons > button.osano-cm-accept-all |
REJECT NON-ESSENTIAL div.osano-cm-window > div#d9ae98a3-af26-487b-9f78-5026beae6bdb > div.osano-cm-dialog__buttons > button.osano-cm-denyAll |
Envío gratis a partir de 50€ y devoluciones gratis - div.swiper-wrapper > div.swiper-slide > p > b |
Comprar Ahora div.swiper-slide > p > a.banner-entry-hyperlink > b |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
ÚLTIMA NOVEDAD div.swiper-slide > article.ig-flex > div.ig-flex > strong.ig-text-[0.875rem] |
Buscar un concesionario div.ig-h-[64px] > a > button.ig-flex > span |
REGÍSTRATE POR CORREO ELECTRÓNICO div.newsletter-signup-body > button.ig-group > div.ig-flex > span.ig-transition-all |
These are opportunities to improve the legibility of your content.
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
NUEVA STREET GLIDE™ 3 LIMITED 2026 div.swiper-slide > div.ig-absolute > div.ig-space-y-2 > h3.ig-text-[1.5rem] |
CVO™ ROAD GLIDE™ ST div.swiper-slide > article.BikeCard > a.!ig-no-underline > h4.ig-text-[0.875rem] |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|
body > img body > img |
body > img body > img |
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.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
España - Español div.bottom-section-container > div.bottom-section-sub-container > div.gc-relative > button.gc-flex |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.harley-davidson.com/us/en/content/membership.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 |
|---|
body > img body > img |
body > img body > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Link Account
… div.d-flex > div.js-registration-hog-section > div.w-100 > a.cta-button |
Log in to see your account. div.gigya-screen > div.row > div.col > a.pb-5 |
Gestionar preferencias de cookies ul.mobile-legal-links > ul > li > a.ig-group |
To appear in search results, crawlers need access to your app.
Send Feedback