Mobile 375 × 812

Desktop 1440 × 900

Score: 72 / 100
Based on 8 categories, 0 sections
Decent speed, but optimizing further could improve engagement.
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.
Reasonable footprint with room for optimization.
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.
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.
3 link(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
59 button(s) with no accessible text
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/7b4c2b34-2e13-4983-a38d-8d23159e88d4)<a href="https://beavercheck.com/results/7b4c2b34-2e13-4983-a38d-8d23159e88d4"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Ffocus.de" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Ffocus.deThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. 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 6.9s to load
+12% bounceUsers abandon at ~3s — you're 4.4s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 1.1s
+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 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
168 broken link(s) on the page
+5% 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.
€405 investment → €4,230/month returns + EUR 120,500,000 risk avoided
€405
4h · 5 findings
€4,230 /mo
~€50,757 / year
EUR 120,500,000
if kept compliant
€135 — 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.
4.5 developer hours at €90/hr
Based on Germany rates (€90/hr)
Start here for the best return on investment
€10,041,667 / month at risk
~€120,500,007 / year if left unfixed
€120,500,000
+5 more
€0.55 /mo
7376.5 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 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.
3.04 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
6.87 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.06 s
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.
4.89 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.
14.97 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.
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.
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.
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 | |
|---|---|---|---|
Wer lernt, langsam und genussvoll zu essen, lebt gesünder und wird eher satt a.Stage-Topic-Box-Item-A > figure.Stage-Topic-Box-Image-Wrapper > picture.aspect-16-9-md > img | /ctf/e8c6aaa6-2d48-4ca9-a11f-2662992d83cc.a2ec8e27-acb3-4... | 46.4 KiB | 42.8 KiB |
Brigitte und Marcel verbinden gemeinsame Hobbys article.pt-md > figure.BlockItem--ImageWrapper > picture.aspect-16-9-md > img | /ctf/4d0686ad-433b-432b-a620-057a271a7b31.9e96a119-383d-4... | 48.6 KiB | 18.8 KiB |
Covered-Call-ETFs: Regelmäßige Erträge locken a.Stage-Topic-Box-Item-A > figure.Stage-Topic-Box-Image-Wrapper > picture.aspect-16-9-md > img | /ctf/5c95b276-fed3-4305-89f6-90f0e8d5b69f.affeee11-1546-4... | 20.8 KiB | 18.2 KiB |
div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image | /sport-live/iOS/football/teams/t686@3x.png | 9.4 KiB | 8.2 KiB |
div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image | /sport-live/iOS/football/teams/t1773@3x.png | 7.7 KiB | 6.6 KiB |
div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image | /sport-live/iOS/football/teams/t1639@3x.png | 6.1 KiB | 5.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 |
|---|---|
| focus.de/ | 759 ms |
| www.focus.de/ | 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 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 |
|---|---|---|
| www.focus.de/ctf/assets/renderer/static/static/style-83bf6f5d.Nn3wZoRB.css | 11.6 KiB | 11.6 KiB |
| www.focus.de/ctf/assets/renderer/static/static/style-e5083dd6.gIekchOi.css | 11.2 KiB | 11.1 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 |
|---|---|---|
| cmp.focus.de/Notice.8f529.js | 90.9 KiB | 61.3 KiB |
| cdn.auth0.com/js/auth0-spa-js/2.17/auth0-spa-js.production.js | 45.1 KiB | 38.9 KiB |
| www.focus.de/ctf/assets/renderer/static/chunks/chunk-skVBKiFE.js | 59.3 KiB | 34.2 KiB |
| /lonrbqKqKJVJ/Gv8Rm2/b78roh/pzr1hLiXG5/RBA3Mno/DSMNPD/NfR... | 160.6 KiB | 31.9 KiB |
| www.focus.de/ | 33.3 KiB | 31.3 KiB |
| a.bf-ad.net/adengine/focus/chunk-prepareEngine-cpCFHERi.js | 30.7 KiB | 21.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.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| www.focus.de/ | 2.0 s | 138 ms | 40 ms |
| Unattributable | 1.9 s | 784 ms | 0.0 ms |
| /lonrbqKqKJVJ/Gv8Rm2/b78roh/pzr1hLiXG5/RBA3Mno/DSMNPD/NfR... | 1.1 s | 1.0 s | 38 ms |
| cmp.focus.de/Notice.8f529.js | 746 ms | 524 ms | 29 ms |
| www.focus.de/ctf/assets/renderer/static/chunks/chunk-tR5rx4pq.js | 469 ms | 421 ms | 0.6 ms |
| www.focus.de/ctf/assets/renderer/static/chunks/chunk-Bl1SenX_.js | 392 ms | 158 ms | 0.1 ms |
| cdn.greenvideo.io/carousel/gfc.js | 310 ms | 231 ms | 0.5 ms |
| cmp.focus.de/unified/wrapperMessagingWithoutDetection.js | 223 ms | 132 ms | 12 ms |
| assets.sp.focus.de/3.1.2/emitter.js | 146 ms | 127 ms | 8.6 ms |
| tags.focus.de/focus-web/prod/utag.js | 105 ms | 66 ms | 25 ms |
| /index.html?hasCsp=true&message_id=1456518&consentUUID=nu... | 71 ms | 0.3 ms | 1.2 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 | 3.7 s |
| Other | 2.1 s |
| Style & Layout | 823 ms |
| Rendering | 483 ms |
| Parse HTML & CSS | 374 ms |
| Script Parsing & Compilation | 207 ms |
| Garbage Collection | 84 ms |
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.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.hidden-md > div.SportLive-Carousel > div.SportLive-Carousel-Pagination > button div.hidden-md > div.SportLive-Carousel > div.SportLive-Carousel-Pagination > button |
div.hidden-md > div.SportLive-Carousel > div.SportLive-Carousel-Pagination > button div.hidden-md > div.SportLive-Carousel > div.SportLive-Carousel-Pagination > button |
div#isl-47-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-47-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-47-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-47-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-49-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-49-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-49-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-49-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-51-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-51-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-51-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-51-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-53-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-53-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-53-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-53-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-55-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-55-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-55-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-55-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-57-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-57-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-57-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-57-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-59-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-59-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-59-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-59-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-61-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-61-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-61-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-61-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-63-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-63-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-63-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-63-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
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 |
|---|
div.Stage-Topic-Box > div.Stage-Topic-Box-Frame > div.Stage-Topic-Box-Header-Container > a.Stage-Topic-Box-MoreLink div.Stage-Topic-Box > div.Stage-Topic-Box-Frame > div.Stage-Topic-Box-Header-Container > a.Stage-Topic-Box-MoreLink |
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.
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 |
|---|
Dann hat Ungarn eine Chance article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Das Geheimnis ums Heilfasten article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Neue Strategie article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Bijan Djir-Sarai im Interview article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Der schwarze Kanal mit Fleischhauer article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
„Selbstheilungsnerv“ article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Vorwürfe gegen Ministerin article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Überschuss durch Energiewende article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
War fast schon ausgerottet article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
These are opportunities to improve the legibility of your content.
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.focus.de/schlagzeilen/ | Mehr |
Format your HTML in a way that enables crawlers to better understand your app’s content.
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 9 | Allow: /incoming/*.ece$. | "$" should only be used at the end of the pattern |
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.
839 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.56 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
65 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.116
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.69 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.
2.40 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.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
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.
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.
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 > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image | /sport-live/iOS/football/teams/t686@3x.png | 9.4 KiB | 8.2 KiB |
div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image | /sport-live/iOS/football/teams/t1773@3x.png | 7.7 KiB | 6.6 KiB |
div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image div > div.Matchcard-Small-Team-Box > div.Matchcard-Small-Icon > div.Matchcard-Small-Icon-Image | /sport-live/iOS/football/teams/t1639@3x.png | 6.1 KiB | 5.0 KiB |
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.
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 |
|---|---|---|
| www.focus.de/ctf/assets/renderer/static/static/style-83bf6f5d.Nn3wZoRB.css | 11.6 KiB | 11.6 KiB |
| www.focus.de/ctf/assets/renderer/static/static/style-e5083dd6.gIekchOi.css | 11.2 KiB | 10.9 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 |
|---|---|---|
| cmp.focus.de/Notice.8f529.js | 90.9 KiB | 61.3 KiB |
| cdn.auth0.com/js/auth0-spa-js/2.17/auth0-spa-js.production.js | 45.1 KiB | 38.9 KiB |
| www.focus.de/ctf/assets/renderer/static/chunks/chunk-skVBKiFE.js | 59.3 KiB | 34.2 KiB |
| a.bf-ad.net/adengine/focus/chunk-prepareEngine-cpCFHERi.js | 46.7 KiB | 33.0 KiB |
| /lonrbqKqKJVJ/Gv8Rm2/b78roh/pzr1hLiXG5/RBA3Mno/DSMNPD/NfR... | 160.6 KiB | 31.9 KiB |
| www.focus.de/ | 33.3 KiB | 31.2 KiB |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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 |
|---|---|
| focus.de/ | 208 ms |
| www.focus.de/ | 0.0 ms |
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
focus.de weiter werbefinanziert lesen
Mit Klick auf „Akzeptieren“ besuchen Sie… div.message-safe-area-holder > div.message-safe-area > div.message-container > div#notice | 0.053 |
body body | 0.044 |
ANZEIGE div.Grid-Wrapper > div#isl-2-AdSlotOop > aside.Ad-Slot-Sticky--Right > div.Ad-Slot | 0.018 |
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.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#isl-9-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-9-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-9-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-9-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-48-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-48-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-48-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-48-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-50-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-50-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-50-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-50-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-52-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-52-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-52-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-52-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-54-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-54-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-54-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-54-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-56-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-56-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-56-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-56-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-58-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-58-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-58-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-58-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-60-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-60-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-60-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-60-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-62-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-62-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-62-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-62-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-64-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-64-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
div#isl-64-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button div#isl-64-ArticleCarousel > div.StageCarousel > div.StageCarousel-Pagination > button |
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 |
|---|
div.Header-Tools > ul.Header-Tools-List > li.facebook > a.Share-Link div.Header-Tools > ul.Header-Tools-List > li.facebook > a.Share-Link |
div.Header-Tools > ul.Header-Tools-List > li.twitter > a.Share-Link div.Header-Tools > ul.Header-Tools-List > li.twitter > a.Share-Link |
div.Stage-Topic-Box > div.Stage-Topic-Box-Frame > div.Stage-Topic-Box-Header-Container > a.Stage-Topic-Box-MoreLink div.Stage-Topic-Box > div.Stage-Topic-Box-Frame > div.Stage-Topic-Box-Header-Container > a.Stage-Topic-Box-MoreLink |
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.
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 |
|---|
Bijan Djir-Sarai im Interview article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Der schwarze Kanal mit Fleischhauer article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
„Selbstheilungsnerv“ article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Vorwürfe gegen Ministerin article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
Überschuss durch Energiewende article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
War fast schon ausgerottet article.Stage-Topic-Box-Item > a.Stage-Topic-Box-Item-A > header.Stage-Topic-Box-Item-Header > p.Stage-Topic-Box-Kicker |
These are opportunities to improve the legibility of your content.
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 |
|---|
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot div.LinkBox_Content > div.RUC-Carousel > div.RUC-Carousel-Controls > button.RUC-Carousel-Dot |
FOCUS online Instagram div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a.Footer-Icon |
FOCUS online Youtube div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a.Footer-Icon |
FOCUS online Whatsapp div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a.Footer-Icon |
FOCUS online Tiktok div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a.Footer-Icon |
Kindle-App div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Desktop Notifications div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Brutto-Netto-Rechner div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Gehaltsvergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Rentenrechner div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Krankenkassen-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Kreditkarten-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Girokonto-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Tagesgeld-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Festgeld-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Tarif -Vergleiche div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
ETF-Sparplan-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Depot-Vergleich div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Lotto div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Sudoko div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Kreuzworträtsel div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
Solitär div.Footer-Subframe-Section > ul.Footer-Subframe-Listing > li > a |
CINEMA nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
FIT FOR FUN nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Patientus nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Playboy nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
BUNTE nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Haus+Garten nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
ELLE nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
freundin nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Mein schöner Garten nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Super Illu nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Guter Rat nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
HolidayCheck nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
jameda nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Freizeitrevue nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Lisa nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
brands you love nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Burdastyle nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
InStyle nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Computeruniverse nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Cyberport nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Das Kochrezept nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Mietwagen Check nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
TV Today nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
zoover nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Chip nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
The Weather Channel nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Preisvergleich BestCheck nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
netmoms nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Finanzen100 nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Cardscout nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
ePower nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Unternehmensportal nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Focus Business nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
Deutschlandtest nav.Footer-Partner > ul.Footer-Link > li > a.mr-sm |
These items highlight common accessibility best practices.
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.
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 9 | Allow: /incoming/*.ece$. | "$" should only be used at the end of the pattern |
To appear in search results, crawlers need access to your app.
Send Feedback