Mobile 375 × 812

Desktop 1440 × 900

Score: 75 / 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.
Good server performance with room for optimization.
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.
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.
4 button(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
No <main> landmark found
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/1bf3eb75-1f63-4800-9f6f-65dd1334cfe5)<a href="https://beavercheck.com/results/1bf3eb75-1f63-4800-9f6f-65dd1334cfe5"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Finteria.pl" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Finteria.plThis 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 user trust.
8 barrier(s) likely increasing bounce by ~29%.
Page takes 11.6s to load
+12% bounceUsers abandon at ~3s — you're 9.1s 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 236ms 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
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
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
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.
PLN 675 investment → PLN 6,891/month returns + EUR 120,500,000 risk avoided
PLN 675
4h · 5 findings
PLN 6,891 /mo
~PLN 82,694 / year
EUR 120,500,000
if kept compliant
PLN 225 — 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 zł150/hr
Based on Poland rates (zł150/hr)
Start here for the best return on investment
PLN 10,041,668 / month at risk
~PLN 120,500,020 / year if left unfixed
€120,500,000
+8 more
PLN 1.66 /mo
5188.5 MB/mo × 0.320 PLN/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.
4.36 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
11.60 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
236 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
5.50 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.
11.63 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.
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 | |
|---|---|---|---|
ul.news-ul > li.news-li > a.tile-a > img.tile-img ul.news-ul > li.news-li > a.tile-a > img.tile-img | msg2021.iplsc.com/ext/000MORG1UYAJVTHY-C454.jpg | 47.5 KiB | 31.9 KiB |
ul.news-ul > li.news-li > a.tile-a > img.tile-img ul.news-ul > li.news-li > a.tile-a > img.tile-img | msg2021.iplsc.com/ext/000MOMQOBPM183TT-C454.jpg | 45.0 KiB | 29.4 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MOOL6WS905QDL-C490.jpg | 27.8 KiB | 25.9 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MONPBWQ1T3YL3-C490.jpg | 24.3 KiB | 22.3 KiB |
ul.wiadspec-ul > li.news-li > a.tile-a > img.tile-img ul.wiadspec-ul > li.news-li > a.tile-a > img.tile-img | msg2021.iplsc.com/ext/000MORNKKLBS0N9D-C454.jpg | 37.3 KiB | 21.8 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MOQM37FH9QYNE-C490.jpg | 22.1 KiB | 20.1 KiB |
Anna Nicz ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5VYCUP23CF6L-C50.png | 19.6 KiB | 19.3 KiB |
Wiktor Kazanecki ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5UK7ESUTOU9P-C50.png | 19.2 KiB | 18.9 KiB |
Marta Kurzyńska ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000KAAQQ3IB3I8PT-C50.png | 17.6 KiB | 17.3 KiB |
Jakub Krzywiecki ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5VYIKAS47NPK-C50.png | 17.0 KiB | 16.7 KiB |
Zdanowicz pomiędzy wersami ul.header-widget > li.header-li > a.header-a > img.podcast-img | msg2021.iplsc.com/ext/000HNPF5GMT9S8R6-C50.png | 17.0 KiB | 16.7 KiB |
Dagmara Pakuła ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000M8J45YAFEPDPH-C50.png | 16.6 KiB | 16.3 KiB |
Gwiazdowski mówi Interii ul.header-widget > li.header-li > a.header-a > img.podcast-img | msg2021.iplsc.com/ext/000HNPFCWTHW5XD1-C50.png | 15.4 KiB | 15.1 KiB |
Justyna Kaczmarczyk ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5ED188HTMMBQ-C50.png | 15.2 KiB | 14.9 KiB |
Jolanta Kamińska ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5ZZKRJD9642Y-C50.png | 14.7 KiB | 14.4 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MORK9L7BWPRSL-C490.jpg | 16.1 KiB | 14.2 KiB |
Cezary Michalski ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKZ0ADSYF8VR7-C50.png | 14.1 KiB | 13.8 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MORMGOT2V69TD-C490.jpg | 15.7 KiB | 13.8 KiB |
Andrzej Krajewski ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LXRSOJ8K7AUDC-C50.png | 14.1 KiB | 13.7 KiB |
Przemysław Białkowski ul.header-widget > li.header-li > a.header-a > img.podcast-img | msg2021.iplsc.com/ext/000JUHTXH2U3U2QI-C50.png | 14.0 KiB | 13.7 KiB |
Tomasz Sajewicz ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKZ0G6I40NBNC-C50.png | 13.8 KiB | 13.4 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MOR9525JB018Y-C490.jpg | 15.3 KiB | 13.4 KiB |
Dominik Héjj ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKYX97SCCOF6I-C50.png | 13.7 KiB | 13.3 KiB |
Antoni Dudek ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKY2Q8PT2RO4L-C50.png | 13.6 KiB | 13.2 KiB |
Leszek Jażdżewski ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKYXEKGKGO26S-C50.png | 13.5 KiB | 13.1 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MORJN2G47MNBP-C490.jpg | 14.9 KiB | 13.0 KiB |
Jarosław Kuisz ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKZ07PQHAWQ0T-C50.png | 13.1 KiB | 12.8 KiB |
Jan Radomski ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LSR7405REQHAX-C50.png | 12.3 KiB | 11.9 KiB |
Bartosz Rydliński ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000M6MZYQU3V9J0E-C50.png | 12.1 KiB | 11.8 KiB |
Dawid Serafin ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5EOSGXCT8MFA-C50.png | 11.8 KiB | 11.5 KiB |
Andrzej Kohut ul.header-widget > li.header-li > div.header-box > img | msg2021.iplsc.com/ext/000LKYXKOF490AD1-C50.png | 11.8 KiB | 11.5 KiB |
Łukasz Rogojsz ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5EC3RBBM62RM-C50.png | 11.3 KiB | 11.0 KiB |
Polityczny WF ul.header-widget > li.header-li > a.header-a > img.podcast-img | msg2021.iplsc.com/ext/000LNWQ7GLL8ECII-C50.png | 11.2 KiB | 10.9 KiB |
Łukasz Szpyrka ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5EBM8FERP6RD-C50.png | 10.8 KiB | 10.5 KiB |
Piotr Witwicki ul.header-widget > li.header-li > a.header-a > img | msg2021.iplsc.com/ext/000G5E875SKIVVTF-C50.png | 10.5 KiB | 10.2 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MORIWKY71KR4C-C490.jpg | 10.2 KiB | 8.3 KiB |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img | msg2021.iplsc.com/ext/000MORDLX4P82KPW-C490.jpg | 9.1 KiB | 7.3 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.
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.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| interia.hit.gemius.pl/xgemius.js | 43200.0 s | 19.5 KiB |
| /getid.js?fpdata=i4KKSFtzOS3b.gHKUlxPBxU4mcWn_BysCmbq3Bu6... | 0.0 ms | 432 B |
| i.iplsc.com/msg-rollup/000MOQMXPJJ66FMS-C506.jpg | 86400.0 s | 0 B |
| i.iplsc.com/msg-rollup/000MORIQC12A76AW-C506.jpg | 86400.0 s | 0 B |
| i.iplsc.com/msg-rollup/000MOPD7DHCAF8VP-C506.jpg | 86400.0 s | 0 B |
| i.iplsc.com/msg-rollup/000MOQB2Y8AR0PKP-C506.jpg | 86400.0 s | 0 B |
| i.iplsc.com/msg-rollup/000MOO7K7TMNGCCM-C506.jpg | 86400.0 s | 0 B |
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 |
|---|---|
| interia.pl/ | 929 ms |
| www.interia.pl/ | 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 |
|---|---|---|
| msg2021.iplsc.com/build/7b7747ec045ae606eb720a1222f56098-core.048a56fb.css | 17.7 KiB | 13.3 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-KTT130KQ7K | 161.7 KiB | 66.6 KiB |
| js.iplsc.com/inpl.uanc/1.3.263/external/js/ado_4_9_0.js | 27.8 KiB | 23.1 KiB |
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.1 s |
| Other | 812 ms |
| Style & Layout | 675 ms |
| Script Parsing & Compilation | 134 ms |
| Rendering | 132 ms |
| Parse HTML & CSS | 92 ms |
| Garbage Collection | 33 ms |
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 | |
|---|---|
Logo specjalne div.page-header-container > div.logo > a > img.special | msg2021.iplsc.com/ext/000L14H9N84XD24G.svg |
technologia ul.header-icon-widget > li.header-li > a.header-a > img | |
nauka ul.header-icon-widget > li.header-li > a.header-a > img | |
kosmos ul.header-icon-widget > li.header-li > a.header-a > img | |
medycyna ul.header-icon-widget > li.header-li > a.header-a > img | |
ekologia ul.header-icon-widget > li.header-li > a.header-a > img | |
sniadania-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
zupy-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
obiady-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
ciasta-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
przekaski-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
salatki-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
przetwory-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
dodatki-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
pieczywo-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
wedliny-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
przepisy ul.header-icon-widget > li.header-li > a.header-a > img | |
wnetrza ul.header-icon-widget > li.header-li > a.header-a > img | |
dekoracje ul.header-icon-widget > li.header-li > a.header-a > img | |
ogrody ul.header-icon-widget > li.header-li > a.header-a > img | |
teksciory ul.header-icon-widget > li.header-li > a.header-a > img |
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 |
|---|
Bardzo dobre div.weather-alert > a.weather-alert__info > div.text > span |
INTERIA Z MADRYTU li.news-li > a.listitem-a > div.listitem-img-wrapper > span.tile-label |
3 615,77 ul.stock > li.header-li > a.header-a > span.value |
-0,67% ul.stock > li.header-li > a.header-a > span.growth |
59 585,86 ul.stock > li.header-li > a.header-a > span.value |
0,40% ul.stock > li.header-li > a.header-a > span.growth |
49 490,03 ul.stock > li.header-li > a.header-a > span.value |
0,69% ul.stock > li.header-li > a.header-a > span.growth |
4,6207 ul.stock > li.header-li > a.header-a > span.value |
0,00% ul.stock > li.header-li > a.header-a > span.growth |
4,2440 ul.stock > li.header-li > a.header-a > span.value |
ZIELONA INTERIA li.news-li > a.listitem-a > div.listitem-img-wrapper > span.tile-label |
MUST BE THE MUSIC ul.header-ul > li.header-li > a.header-a > span.header-span |
Copyright: div.footer-item > ul.footer-ul > li.footer-li > span |
INTERIA.PL div.footer-item > ul.footer-ul > li.footer-li > a.footer-a |
1999-2026 div.footer-item > ul.footer-ul > li.footer-li > span |
naszych partnerów reklamowych (1018) form.rodo-popup > div.rodo-popup-content > p > a |
PRZYPOMNIJ PÓŹNIEJ body > form.rodo-popup > div.rodo-popup-content > button.rodo-popup-later |
USTAWIENIA PRYWATNOŚCI body > form.rodo-popup > div.rodo-popup-buttons > button.rodo-popup-settings |
PRZEJDŹ DO SERWISU body > form.rodo-popup > div.rodo-popup-buttons > button.rodo-popup-agree |
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 |
|---|
POWIETRZE div.weather-alert > a.weather-alert__info > div.text > h4 |
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 |
|---|
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav.column-switch > ul.tabbar-ul > li.tabbar-li > a.tabbar-a nav.column-switch > ul.tabbar-ul > li.tabbar-li > a.tabbar-a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
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.
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 |
|---|
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img li.news-li > a.listitem-a > div.listitem-img-wrapper > img.listitem-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
ul.news-ul > li.reels-li > a.tile-a > img.tile-img ul.news-ul > li.reels-li > a.tile-a > img.tile-img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.45 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.67 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.003
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.45 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.68 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.
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.
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.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| interia.hit.gemius.pl/xgemius.js | 43200.0 s | 19.5 KiB |
| /getid.js?fpdata=DJzX0zSrov2GvAAVoqk__dl9qxhXy2IblM4SfXTO... | 0.0 ms | 432 B |
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#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORG1UYAJVTHY-C492.jpg | 81.7 KiB | 41.3 KiB |
ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORNKKLBS0N9D-C492.jpg | 61.6 KiB | 21.2 KiB |
Anna Nicz ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5VYCUP23CF6L-C50.png | 19.6 KiB | 19.3 KiB |
Wiktor Kazanecki ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5UK7ESUTOU9P-C50.png | 19.2 KiB | 18.9 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOQLU2T0HI3U2-C490.jpg | 27.8 KiB | 18.3 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOOL6WS905QDL-C490.jpg | 27.8 KiB | 18.3 KiB |
Marta Kurzyńska ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000KAAQQ3IB3I8PT-C50.png | 17.6 KiB | 17.3 KiB |
Jakub Krzywiecki ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5VYIKAS47NPK-C50.png | 17.0 KiB | 16.7 KiB |
Zdanowicz pomiędzy wersami ul.header-widget > li.header-li > a.header-a > img.podcast-img | sgp2021.iplsc.com/ext/000HNPF5GMT9S8R6-C50.png | 17.0 KiB | 16.7 KiB |
Dagmara Pakuła ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000M8J45YAFEPDPH-C50.png | 16.6 KiB | 16.3 KiB |
Polityczny WF ul.header-widget > li.header-li > a.header-a > img.podcast-img | sgp2021.iplsc.com/ext/000LNWQ7GLL8ECII-C50.png | 15.7 KiB | 15.4 KiB |
Gwiazdowski mówi Interii ul.header-widget > li.header-li > a.header-a > img.podcast-img | sgp2021.iplsc.com/ext/000HNPFCWTHW5XD1-C50.png | 15.4 KiB | 15.1 KiB |
Justyna Kaczmarczyk ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5ED188HTMMBQ-C50.png | 15.2 KiB | 14.9 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MONPBWQ1T3YL3-C490.jpg | 24.3 KiB | 14.7 KiB |
Jolanta Kamińska ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5ZZKRJD9642Y-C50.png | 14.7 KiB | 14.4 KiB |
Cezary Michalski ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LKZ0ADSYF8VR7-C50.png | 14.1 KiB | 13.8 KiB |
Andrzej Krajewski ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LXRSOJ8K7AUDC-C50.png | 14.1 KiB | 13.7 KiB |
Przemysław Białkowski ul.header-widget > li.header-li > a.header-a > img.podcast-img | sgp2021.iplsc.com/ext/000JUHTXH2U3U2QI-C50.png | 14.0 KiB | 13.7 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOMQOBPM183TT-C490.jpg | 23.1 KiB | 13.5 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORNSJEBF7R7Q-C490.jpg | 22.9 KiB | 13.4 KiB |
Dominik Héjj ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LKYX97SCCOF6I-C50.png | 13.7 KiB | 13.3 KiB |
Antoni Dudek ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LKY2Q8PT2RO4L-C50.png | 13.6 KiB | 13.2 KiB |
Leszek Jażdżewski ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LKYXEKGKGO26S-C50.png | 13.5 KiB | 13.1 KiB |
Jarosław Kuisz ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LKZ07PQHAWQ0T-C50.png | 13.1 KiB | 12.8 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOQM37FH9QYNE-C490.jpg | 22.1 KiB | 12.5 KiB |
Dawid Serafin ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5EOSGXCT8MFA-C50.png | 11.8 KiB | 11.5 KiB |
Andrzej Kohut ul.header-widget > li.header-li > div.header-box > img | sgp2021.iplsc.com/ext/000LKYXKOF490AD1-C50.png | 11.8 KiB | 11.5 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORKABRU1JPYM-C490.jpg | 20.9 KiB | 11.3 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORKJ2YPM2CKU-C490.jpg | 20.8 KiB | 11.3 KiB |
Łukasz Rogojsz ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5EC3RBBM62RM-C50.png | 11.3 KiB | 11.0 KiB |
Łukasz Szpyrka ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5EBM8FERP6RD-C50.png | 10.8 KiB | 10.5 KiB |
Piotr Witwicki ul.header-widget > li.header-li > a.header-a > img | sgp2021.iplsc.com/ext/000G5E875SKIVVTF-C50.png | 10.5 KiB | 10.2 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MONPRLWR4B5V0-C490.jpg | 19.5 KiB | 10.0 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOO8EQTXAMAL5-C490.jpg | 18.9 KiB | 9.4 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MON8N6DBF90AD-C490.jpg | 18.4 KiB | 8.9 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORIGKC0YWMD2-C490.jpg | 18.4 KiB | 8.9 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORL7N74V7C2A-C490.jpg | 17.7 KiB | 8.2 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORCZH58SB5SM-C492.jpg | 48.2 KiB | 7.8 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOQTTJNPKS9Y0-C490.jpg | 16.7 KiB | 7.1 KiB |
div.tile-news-list > div.news-li > a.tile-a > img.tile-img div.tile-news-list > div.news-li > a.tile-a > img.tile-img | staper.iplsc.com/000MON881HB84YKV-C490.jpg | 16.2 KiB | 6.7 KiB |
ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORK9L7BWPRSL-C490.jpg | 16.1 KiB | 6.6 KiB |
div.tile-news-list > div.news-li > a.tile-a > img.tile-img div.tile-news-list > div.news-li > a.tile-a > img.tile-img | staper.iplsc.com/000MNBKDUJ3SQBCU-C490.jpg | 15.8 KiB | 6.3 KiB |
ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORMGOT2V69TD-C490.jpg | 15.7 KiB | 6.2 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOOKVNJQ110XP-C490.jpg | 15.6 KiB | 6.1 KiB |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOR9525JB018Y-C490.jpg | 15.3 KiB | 5.8 KiB |
ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img ul.wiadspec-ul > li.wiadspec-li > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORJN2G47MNBP-C490.jpg | 14.9 KiB | 5.4 KiB |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MODR3D5MRXGGU-C490.jpg | 14.3 KiB | 4.8 KiB |
div.tile-news-list > div.news-li > a.tile-a > img.tile-img div.tile-news-list > div.news-li > a.tile-a > img.tile-img | staper.iplsc.com/000MOQTVJ7EDN71K-C490.jpg | 13.9 KiB | 4.4 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-KTT130KQ7K | 161.7 KiB | 66.6 KiB |
| fundingchoicesmessages.google.com/i/pub-1636271870028934?ers=1 | 68.5 KiB | 36.5 KiB |
| js.iplsc.com/inpl.uanc/1.3.263/external/js/ado_4_9_0.js | 27.8 KiB | 23.1 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 | |
|---|---|
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MON8N6DBF90AD-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORIGKC0YWMD2-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MONPRLWR4B5V0-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOO0LTQA5W5XA-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOMQOBPM183TT-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MONPBWQ1T3YL3-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOQM37FH9QYNE-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOOL6WS905QDL-C490.jpg |
div#wz > div.item > a.tile-a > img.tile-img div#wz > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOR9525JB018Y-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOOKVNJQ110XP-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOQLU2T0HI3U2-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOQTTJNPKS9Y0-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MODR3D5MRXGGU-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORKABRU1JPYM-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORNSJEBF7R7Q-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORKJ2YPM2CKU-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MORL7N74V7C2A-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOPGQWHNS5A1A-C490.jpg |
div.content-main > div.item > a.tile-a > img.tile-img div.content-main > div.item > a.tile-a > img.tile-img | sgp2021.iplsc.com/ext/000MOO8EQTXAMAL5-C490.jpg |
technologia ul.header-icon-widget > li.header-li > a.header-a > img | |
nauka ul.header-icon-widget > li.header-li > a.header-a > img | |
kosmos ul.header-icon-widget > li.header-li > a.header-a > img | |
medycyna ul.header-icon-widget > li.header-li > a.header-a > img | |
ekologia ul.header-icon-widget > li.header-li > a.header-a > img | |
sniadania-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
zupy-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
obiady-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
ciasta-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
przekaski-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
salatki-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
przetwory-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
dodatki-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
pieczywo-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
wedliny-1 ul.header-icon-widget > li.header-li > a.header-a > img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
przepisy ul.header-icon-widget > li.header-li > a.header-a > img | |
wnetrza ul.header-icon-widget > li.header-li > a.header-a > img | |
dekoracje ul.header-icon-widget > li.header-li > a.header-a > img | |
ogrody ul.header-icon-widget > li.header-li > a.header-a > img | |
teksciory ul.header-icon-widget > li.header-li > a.header-a > img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-1 > a.tile-a > img.tile-img div.row > li.row-1 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img | |
div.row > li.row-2 > a.tile-a > img.tile-img div.row > li.row-2 > a.tile-a > img.tile-img |
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 |
|---|---|
| interia.pl/ | 347 ms |
| www.interia.pl/ | 0.0 ms |
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 |
|---|
Bardzo dobre div.weather-alert > a.weather-alert-info > div.text > span.desc |
WIĘCEJ SPORTU div.news-list > ul.news-list-inner > li.more-news > a |
3 615,77 ul.stock > li.header-li > a.header-a > span.value |
-0,67% ul.stock > li.header-li > a.header-a > span.growth |
59 585,86 ul.stock > li.header-li > a.header-a > span.value |
0,40% ul.stock > li.header-li > a.header-a > span.growth |
49 490,03 ul.stock > li.header-li > a.header-a > span.value |
0,69% ul.stock > li.header-li > a.header-a > span.growth |
4,6207 ul.stock > li.header-li > a.header-a > span.value |
0,00% ul.stock > li.header-li > a.header-a > span.growth |
4,2440 ul.stock > li.header-li > a.header-a > span.value |
3,6253 ul.stock > li.header-li > a.header-a > span.value |
0,02% ul.stock > li.header-li > a.header-a > span.growth |
NAJNOWSZE PLOTKI ul.header-ul > li.header-li > a.header-a > span.span-colored |
POMPONIK EXCLUSIVE ⭐ ul.header-ul > li.header-li > a.header-a > span.span-colored |
TANIEC Z GWIAZDAMI ul.header-ul > li.header-li > a.header-a > span.span-colored |
SKANDALE ul.header-ul > li.header-li > a.header-a > span.span-colored |
DOMY I MAJĄTKI GWIAZD ul.header-ul > li.header-li > a.header-a > span.span-colored |
WIĘCEJ div.header-right > ul.header-ul > li.header-li > a.header-a |
MUST BE THE MUSIC ul.header-ul > li.header-li > a.header-a > span.header-span |
MATERIAŁY PROMOCYJNE PARTNERÓW section.section > div#oferty > header.header > p.ads-claim |
naszych partnerów reklamowych (1018) form.rodo-popup > div.rodo-popup-content > p > a |
Polityce cookies form.rodo-popup > div.rodo-popup-content > p > a |
PRZYPOMNIJ PÓŹNIEJ body.sg > form.rodo-popup > div.rodo-popup-content > button.rodo-popup-later |
USTAWIENIA PRYWATNOŚCI body.sg > form.rodo-popup > div.rodo-popup-buttons > button.rodo-popup-settings |
PRZEJDŹ DO SERWISU body.sg > form.rodo-popup > div.rodo-popup-buttons > button.rodo-popup-agree |
These are opportunities to improve the legibility of your content.
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 |
|---|
div.content-main > div.tile > div.carousel-container > ul.carousel-nav div.content-main > div.tile > div.carousel-container > ul.carousel-nav |
Hortensje są teraz głodne jednego nawozu. Syp, będą miały kwiatów bez liku
Posa… div#rekomend > div.section-content > div#rekomend-slider > ul.slides-list |
Ziemniaki po zbójecku zawsze robią furorę
Nie wymaga pieczenia i zawsze się uda… div#wasza_int > div.section-content > div#wasza_int-slider > ul.slides-list |
Stanisław Wyspiański: Wesele
Dawid Podsiadło: sezon
Pytania jawne 2026: Pytania… div#interesting > div.section-content > div#interesting-slider > ul.slides-list |
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Hortensje są teraz głodne jednego nawozu. Syp, będą miały kwiatów bez liku div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Posadź w cieniu, podlej i zostaw. Jej liście same nabiorą koloru div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Rozrzuć wokół młodego rabarbaru. Urośnie szybciej, gruby i zdrowy div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Nie wystarczy badanie moczu. Taka diagnostyka wykryje choroby nerek div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Energia i antyoksydanty w pysznej formie. Kolorowa matcha to już hit sezonu div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Zwabiaj do ogrodu. Na ćmę bukszpanową są lepsze od oprysków div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Widzisz je na sadzonkach pomidorów? To znak, że czas na pikowanie div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Domowa odżywka z dwóch składników. Rozsada ogórka będzie zdrowa i silna div#rekomend-slider > ul.slides-list > div.row > li.row-1 |
Ziemniaki po zbójecku zawsze robią furorę div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Nie wymaga pieczenia i zawsze się udaje div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Najlepsza na kaszel. Zasiej dziewannę drobnokwiatową wiosną i susz latem div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Kotlety mielone z boczniaków div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Matura 2026. Kiedy można poprawiać egzamin maturalny? Sprawdź warunki div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Zielarze cenią jego korę i owoce. Poznaj moce krzewu berberysu div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Czasem lubię kryć się w cieniu div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Opactwo w Lądzie nad Wartą. Jeden z najstarszych klasztorów w Polsce div#wasza_int-slider > ul.slides-list > div.row > li.row-1 |
Stanisław Wyspiański: Wesele div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Dawid Podsiadło: sezon div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Pytania jawne 2026: Pytania jawne na maturę ustną z języka polskiego 2026 div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Zapiekanka makaronowa z kurczakiem div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Adam Mickiewicz: Pan Tadeusz div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Nie kładź torebki na podłodze. Te przesądy mają "przyciągać" pieniądze div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Ferenc Molnar: Chłopcy z Placu Broni div#interesting-slider > ul.slides-list > div.row > li.row-1 |
Bolesław Prus: Lalka div#interesting-slider > ul.slides-list > div.row > li.row-1 |
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 |
|---|
WARSZAWA div.weather > div.weather-forecast > h4.weather-location > a.opener |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
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.
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 |
|---|
WARSZAWA div.weather > div.weather-forecast > h4.weather-location > a.opener |
Wyczyść div.page-section > div.top > div.input-wrap > a.input-clear |
div.weather-search > div.page-section > div.top > a.localize-button div.weather-search > div.page-section > div.top > a.localize-button |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor div.suggest-list-box > ul.suggest-list > li > a.weather-item-anchor |
To appear in search results, crawlers need access to your app.
Send Feedback