Mobile 375 × 812

Desktop 1440 × 900

Score: 78 / 100
Based on 8 categories, 0 sections
Fast site — your users get a smooth experience.
Good foundation, but a few gaps could be exploited.
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.
Good content signals with minor gaps.
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.
1 control(s) without accessible label
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
2 button(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
2 link(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
Cross-Origin-Embedder-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
Cross-Origin-Opener-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
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/d9c8304d-dda3-43a0-99ed-ddcbc03b6879)<a href="https://beavercheck.com/results/d9c8304d-dda3-43a0-99ed-ddcbc03b6879"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Ftu-dresden.de" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Ftu-dresden.deThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Addressing the critical issues below would have the most immediate impact on your audience reach.
8 barrier(s) likely increasing bounce by ~30%.
Page takes 6.8s to load
+12% bounceUsers abandon at ~3s — you're 4.3s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
High main-thread blocking time
+2% bouncePage is non-interactive for 290ms after first paint
Fix: Defer third-party scripts and split large bundles
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
1 form field(s) without a label
+2% bounceScreen readers skip unlabeled fields; autofill can't identify them; checkout abandonment spikes
Fix: Associate every input with a visible <label for="…">; add autocomplete attributes
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
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
5 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.
€495 investment → €3,978/month returns + EUR 120,500,000 risk avoided
€495
6h · 5 findings
€3,978 /mo
~€47,736 / year
EUR 120,500,000
if kept compliant
€90 — 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.
5.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,004 / year if left unfixed
€120,500,000
+5 more
€0.35 /mo
4696.6 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 3 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.21 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
6.80 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
290 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.001
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
5.04 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.
6.86 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.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
eine Baustelle der Zukunft: vernetzte Geräte wie Roboterarme, Kräne, Drohnen. m… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/areas-of-excellence-c... | 249.2 KiB | 235.3 KiB |
div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete | /ressourcen/bilder/startseitenbanner/Mockup_4_TUD_ImageBr... | 114.7 KiB | 93.6 KiB |
Oberflächen Exzitonen - ein gitterartiger Würfel aus Teilchen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/ct.qma... | 58.4 KiB | 44.5 KiB |
div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete | /ressourcen/bilder/campus-navigator-placeit.jpg/@@images/... | 61.8 KiB | 40.7 KiB |
Exzellenzcluster PoL div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/pol/19... | 46.5 KiB | 32.6 KiB |
div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete | /tu-dresden/exzellenz/ressourcen/bilder/film-we-are/120_f... | 52.2 KiB | 31.1 KiB |
ein Dirigent steht neben drei Menschengroßen Roboterarmen, jeder mit einemTakts… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/roboter-sinfonie/@@im... | 42.2 KiB | 28.3 KiB |
VIsualisierung des Phasenübergangs bei Solarzellen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/rec2_pixelwg_Joerg-Ba... | 40.9 KiB | 26.9 KiB |
Foto von Mohamed Elgendy. div.teaser-image > span.picture-element > picture > img | /med/mf/ressourcen/bilder/news/2026/Mi2.jpg/@@images/09ef... | 39.3 KiB | 25.3 KiB |
Photo: A person with blonde hair points at a screen displaying a geometric diag… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/startseite/Stills-00_00_00_02-Still003... | 34.9 KiB | 13.8 KiB |
div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete | /ressourcen/bilder/startseite/2026_Exzellenz-Header_final... | 36.3 KiB | 12.8 KiB |
Logo of the Service Center Studies. Big S green, big C orange, big S blue, behi… div.media-container > figure.media > span.picture-element > img | /ressourcen/bilder/startseite/Logo_SCS_bunt.png/@@images/... | 18.8 KiB | 11.5 KiB |
Bildcollage mit einem Porträtfoto von Juniorprofessorin Dorit Brixius und einem… div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... | 30.2 KiB | 9.1 KiB |
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.
| URL | Transfer Size | Duration |
|---|---|---|
| /++plone++production/++unique++2026-03-30T14:52:00.121084... | 202.5 KiB | 900 ms |
| /++plone++static/++unique++2024-11-11 23:39:45.815496/plo... | 1.1 KiB | 150 ms |
| /++plone++static/++unique++2024-11-11 23:39:45.815496/plo... | 3.6 KiB | |
| tu-dresden.de/++theme++tud.theme.webcms2/css/common.css?version=None | 58.9 KiB | 300 ms |
| /++plone++production/++unique++2026-03-30T14:52:00.121084... | 1.9 KiB |
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.
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.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /++plone++production/++unique++2026-03-30T14:52:00.121084... | 202.0 KiB | 25.7 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 |
|---|---|---|
| tu-dresden.de/++theme++tud.theme.webcms2/css/common.css?version=None | 58.4 KiB | 47.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 |
|---|---|---|
| /++plone++production/++unique++2026-03-30T14:52:00.121084... | 201.6 KiB | 78.6 KiB |
| matomo.tu-dresden.de/matomo.js | 66.4 KiB | 37.9 KiB |
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Bildcollage mit einem Porträtfoto von Juniorprofessorin Dorit Brixius und einem… div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... |
Rendering of a GaAs-based semiconductor sample approximately 20 micrometers in … div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... |
Foto von Mohamed Elgendy. div.teaser-image > span.picture-element > picture > img | /med/mf/ressourcen/bilder/news/2026/Mi2.jpg/@@images/09ef... |
Photo: A person with blonde hair points at a screen displaying a geometric diag… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/startseite/Stills-00_00_00_02-Still003... |
ein Dirigent steht neben drei Menschengroßen Roboterarmen, jeder mit einemTakts… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/roboter-sinfonie/@@im... |
VIsualisierung des Phasenübergangs bei Solarzellen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/rec2_pixelwg_Joerg-Ba... |
eine Baustelle der Zukunft: vernetzte Geräte wie Roboterarme, Kräne, Drohnen. m… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/areas-of-excellence-c... |
Oberflächen Exzitonen - ein gitterartiger Würfel aus Teilchen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/ct.qma... |
Exzellenzcluster PoL div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/pol/19... |
Free State of Saxony modern coat of arms div.row > div.row > div.columns > img | tu-dresden.de/++theme++tud.theme.webcms2/img/sachsen-signet-gruen.svg |
Logo: TUD Dresden University of Technology div#portal-header > div#portal-logo > a > img.white | tu-dresden.de/++theme++tud.theme.webcms2/img/tud-logo-white-en-2025-v2.svg |
EUTOPIA Alliance of 10 European Universities homepage div.row > div.columns > a > img | tu-dresden.de/++theme++tud.theme.webcms2/img/eutopia-logo.svg |
Trademark and Claim of TUD: TUD | The Collaborative University - inventive. tra… div.border > div.row > div.columns > img | tu-dresden.de/++theme++tud.theme.webcms2/img/tud_claim_2025.svg |
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.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
© TUD
University of Excellence
TUD has been one of Germany’s Universities of E… section.content-teaser-box > div.row > div.columns > div.teaser-box |
APR
22
2026
Gewerbliche Schutzrechte in der Praxis - Teil II - Patentrecherch… section.event-slider > div.row > div.columns > div.owl-carousel |
© AVANGA Filmproduktion
VIDEO: WE ARE TUD
MORE
© CD
BROCHURE: KNOWLEDGE FOR… div.banner-box-background > div.row > div.columns > div.owl-carousel |
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Read more
University of Excellence div.owl-item > div.content-teaser-item > div.more-wrapper > a.more |
When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. Learn more about input field labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
© TUD
University of Excellence
TUD has been one of Germany’s Universities of E… section.content-teaser-box > div.row > div.columns > div.teaser-box |
APR
22
2026
Gewerbliche Schutzrechte in der Praxis - Teil II - Patentrecherch… section.event-slider > div.row > div.columns > div.owl-carousel |
© AVANGA Filmproduktion
VIDEO: WE ARE TUD
MORE
© CD
BROCHURE: KNOWLEDGE FOR… div.banner-box-background > div.row > div.columns > div.owl-carousel |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Read more div.columns > div.more-wrapper > a.more > span.link-icon |
Read more div.columns > div.more-wrapper > a.more > span.link-icon |
Read more div.columns > div.more-wrapper > a.more > span.link-icon |
FACTS & FIGURES div.row > div.columns > div.float-left > h1.box-title |
These are opportunities to improve the legibility of your content.
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.formatted > div.contact-block > p.tel > a.ms-text div.formatted > div.contact-block > p.tel > a.ms-text |
div.formatted > div.contact-block > p > a.ms-m-href div.formatted > div.contact-block > p > a.ms-m-href |
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.
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 |
|---|
1 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
2 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
3 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
4 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
5 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
6 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
1 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
2 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
3 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
4 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
5 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
1 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
2 div.columns > div.owl-carousel > div.owl-dots > button.owl-dot |
These items highlight common accessibility best practices.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: the server responded with a status of 502 (Bad Gateway) |
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.
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.07 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.82 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
0 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.121
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.34 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.
1.84 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.
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.
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.
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.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete | /ressourcen/bilder/startseitenbanner/Mockup_4_TUD_ImageBr... | 114.7 KiB | 93.6 KiB |
eine Baustelle der Zukunft: vernetzte Geräte wie Roboterarme, Kräne, Drohnen. m… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/areas-of-excellence-c... | 101.4 KiB | 93.1 KiB |
div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete | /ressourcen/bilder/startseite/2026_Exzellenz-Header_final... | 128.4 KiB | 34.7 KiB |
div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete div.owl-item > div.teaser > div.teaser-bg > span.bg-picture-concrete | /tu-dresden/exzellenz/ressourcen/bilder/film-we-are/120_f... | 52.2 KiB | 31.1 KiB |
Oberflächen Exzitonen - ein gitterartiger Würfel aus Teilchen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/ct.qma... | 33.9 KiB | 25.7 KiB |
Foto von Mohamed Elgendy. div.teaser-image > span.picture-element > picture > img | /med/mf/ressourcen/bilder/news/2026/Mi2.jpg/@@images/508a... | 28.8 KiB | 20.6 KiB |
Exzellenzcluster PoL div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/pol/19... | 27.8 KiB | 19.6 KiB |
div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete div.columns > div.teaser > div.teaser-bg > span.bg-picture-concrete | /ressourcen/bilder/campus-navigator-placeit.jpg/@@images/... | 27.4 KiB | 19.2 KiB |
ein Dirigent steht neben drei Menschengroßen Roboterarmen, jeder mit einemTakts… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/roboter-sinfonie/@@im... | 26.4 KiB | 18.1 KiB |
Logo of the Service Center Studies. Big S green, big C orange, big S blue, behi… div.media-container > figure.media > span.picture-element > img | /ressourcen/bilder/startseite/Logo_SCS_bunt.png/@@images/... | 18.8 KiB | 11.6 KiB |
VIsualisierung des Phasenübergangs bei Solarzellen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/rec2_pixelwg_Joerg-Ba... | 19.2 KiB | 11.0 KiB |
Photo: A person with blonde hair points at a screen displaying a geometric diag… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/startseite/Stills-00_00_00_02-Still003... | 18.6 KiB | 10.4 KiB |
Rendering of a GaAs-based semiconductor sample approximately 20 micrometers in … div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... | 16.0 KiB | 7.8 KiB |
Bildcollage mit einem Porträtfoto von Juniorprofessorin Dorit Brixius und einem… div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... | 14.8 KiB | 6.6 KiB |
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
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.
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 |
|---|---|---|
| tu-dresden.de/++theme++tud.theme.webcms2/css/common.css?version=None | 58.4 KiB | 47.5 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /++plone++production/++unique++2026-03-30T14:52:00.121084... | 201.6 KiB | 79.5 KiB |
| matomo.tu-dresden.de/matomo.js | 66.4 KiB | 37.9 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /++plone++production/++unique++2026-03-30T14:52:00.121084... | 202.0 KiB | 25.7 KiB |
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Free State of Saxony modern coat of arms div.row > div.row > div.columns > img | tu-dresden.de/++theme++tud.theme.webcms2/img/sachsen-signet-gruen.svg |
Bildcollage mit einem Porträtfoto von Juniorprofessorin Dorit Brixius und einem… div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... |
Rendering of a GaAs-based semiconductor sample approximately 20 micrometers in … div.teaser-image > span.picture-element > picture > img | /tu-dresden/newsportal/ressourcen/bilder/news-bilder/foto... |
Foto von Mohamed Elgendy. div.teaser-image > span.picture-element > picture > img | /med/mf/ressourcen/bilder/news/2026/Mi2.jpg/@@images/508a... |
Photo: A person with blonde hair points at a screen displaying a geometric diag… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/startseite/Stills-00_00_00_02-Still003... |
ein Dirigent steht neben drei Menschengroßen Roboterarmen, jeder mit einemTakts… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/roboter-sinfonie/@@im... |
VIsualisierung des Phasenübergangs bei Solarzellen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/rec2_pixelwg_Joerg-Ba... |
eine Baustelle der Zukunft: vernetzte Geräte wie Roboterarme, Kräne, Drohnen. m… div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/areas-of-excellence-c... |
Oberflächen Exzitonen - ein gitterartiger Würfel aus Teilchen div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/ct.qma... |
Exzellenzcluster PoL div.teaser-image > span.picture-element > picture > img | /ressourcen/bilder/buehne/exzellenz/bilder-der-exc/pol/19... |
Logo: TUD Dresden University of Technology div#portal-header > div#portal-logo > a > img.white | tu-dresden.de/++theme++tud.theme.webcms2/img/tud-logo-white-en-2025-v2.svg |
EUTOPIA Alliance of 10 European Universities homepage div.row > div.columns > a > img | tu-dresden.de/++theme++tud.theme.webcms2/img/eutopia-logo.svg |
Trademark and Claim of TUD: TUD | The Collaborative University - inventive. tra… div.border > div.row > div.columns > img | tu-dresden.de/++theme++tud.theme.webcms2/img/tud_claim_2025.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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 |
|---|---|
NEWS
More News
© Sven Ellger / TUD, J.Dünnhaupt
Apr 13, 2026
Two TUD researcher… body.pace-done > div#body-wrapper > main#main > section.news-teaser | 0.111 |
Responsible Electronics
Whether smartphones, laptops, or televisions – everyda… div.content-teaser-item > div.relative > a.teaser > div.teaser-content | 0.010 |
We are
collaborative.
We are
excellent! div.columns > div.teaser > div.sp-teaser-content-wrapper > div.sp-teaser-content | 0.001 |
We are
collaborative.
We are
excellent! div.columns > div.teaser > div.sp-teaser-content-wrapper > div.sp-teaser-content | 0.000 |
Information for
EN
Search header#header > div.row > div#portal-header > div#variable-header-container | 0.000 |
div.columns > div#uuid-0c895cf3515a4dd3a8964310d131c75b > button.owl-prev > ::before div.columns > div#uuid-0c895cf3515a4dd3a8964310d131c75b > button.owl-prev > ::before | 0.000 |
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.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
© TUD
University of Excellence
TUD has been one of Germany’s Universities of E… section.content-teaser-box > div.row > div.columns > div.teaser-box |
APR
22
2026
Gewerbliche Schutzrechte in der Praxis - Teil II - Patentrecherch… section.event-slider > div.row > div.columns > div.owl-carousel |
© AVANGA Filmproduktion
VIDEO: WE ARE TUD
MORE
© CD
BROCHURE: KNOWLEDGE FOR… div.banner-box-background > div.row > div.columns > div.owl-carousel |
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Read more
University of Excellence div.owl-item > div.content-teaser-item > div.more-wrapper > a.more |
Read more
Robotics of the future div.owl-item > div.content-teaser-item > div.more-wrapper > a.more |
Read more
Responsible Electronics div.owl-item > div.content-teaser-item > div.more-wrapper > a.more |
When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. Learn more about input field labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
© TUD
University of Excellence
TUD has been one of Germany’s Universities of E… section.content-teaser-box > div.row > div.columns > div.teaser-box |
APR
22
2026
Gewerbliche Schutzrechte in der Praxis - Teil II - Patentrecherch… section.event-slider > div.row > div.columns > div.owl-carousel |
© AVANGA Filmproduktion
VIDEO: WE ARE TUD
MORE
© CD
BROCHURE: KNOWLEDGE FOR… div.banner-box-background > div.row > div.columns > div.owl-carousel |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
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.formatted > div.contact-block > p.tel > a.ms-text div.formatted > div.contact-block > p.tel > a.ms-text |
div.formatted > div.contact-block > p > a.ms-m-href div.formatted > div.contact-block > p > a.ms-m-href |
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.
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 |
|---|
1 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
2 div.columns > div.teaser-box > div.owl-dots > button.owl-dot |
These items highlight common accessibility best practices.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: the server responded with a status of 502 (Bad Gateway) |
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.
Send Feedback