Mobile 375 × 812

Desktop 1440 × 900

Score: 69 / 100
Based on 8 categories, 0 sections
Room to improve — your 4.2s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Good server performance with room for optimization.
Mostly compliant — a few items need attention.
Rich content metadata — your pages look great everywhere.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
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.
1 image(s) missing alt attribute
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
1 image-in-link without alt text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/068e2d84-ce57-4f84-ae72-c3f1f70958db)<a href="https://beavercheck.com/results/068e2d84-ce57-4f84-ae72-c3f1f70958db"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Frediff.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Frediff.comThis badge auto-updates with your latest scan result.
Your site has several issues that may be affecting user experience and business outcomes. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
7 barrier(s) likely increasing bounce by ~29%.
Page takes 4.2s to load
+12% bounceUsers abandon at ~3s — you're 1.7s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 3.5s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No 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
25 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
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
12 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.
₹6,750 investment → ₹34,896/month returns + INR 2,500,000,000 risk avoided
₹6,750
4h · 5 findings
₹34,896 /mo
~₹418,756 / year
INR 2,500,000,000
if kept compliant
₹2,250 — 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 ₹1500/hr
Based on India rates (₹1500/hr)
Start here for the best return on investment
₹208,333,405 / month at risk
~₹2,500,000,862 / year if left unfixed
₹2,500,000,000
+1 more
₹72 /mo
10773.9 MB/mo × 6.667 INR/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
3.04 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.16 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
3.54 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.015
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
7.16 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.
27.32 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.
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.
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 | |
|---|---|---|---|
vdo#_vdo_ads_player_ai_27672 > vdo#vdoai_parentWrapperDiv > vdo.vdoai_parentDiv > video#vdo_ai_7013 vdo#_vdo_ads_player_ai_27672 > vdo#vdoai_parentWrapperDiv > vdo.vdoai_parentDiv > video#vdo_ai_7013 | /media_file/v-rediff-v11/source/uploads/thumbnails/177141... | 39.6 KiB | 30.2 KiB |
body body | img.youtube.com/vi/_ZuRxW7ACmY/hqdefault.jpg | 17.9 KiB | 12.9 KiB |
From Oct 1, Even Smallest Misstep Can Cost A Wicket div.bigcard > div.div_big_img > a > img.big | im.rediff.com/390-250/cricket/2026/apr/20cricket-laws-1.jpg | 24.9 KiB | 9.0 KiB |
Iran refuses to send delegation for peace talks in Pak div.firstnews > div.div_big_img > a > img.big | im.rediff.com/390-250/news/2026/apr/21peace-talks-in-pakistan.jpg | 23.0 KiB | 7.1 KiB |
Discovering The Rhythm Of Bhutan div.item > div.timg > a > img.itemimg | im.rediff.com/180-140/getahead/2026/apr/14-bhutan-dance1.jpg | 8.6 KiB | 4.5 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| rediff.com/ | 760 ms |
| www.rediff.com/ | 630 ms |
| www.rediff.com/ | 464 ms |
| m.rediff.com/ | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 7.4 s |
| Other | 1.8 s |
| Style & Layout | 1.3 s |
| Script Parsing & Compilation | 939 ms |
| Rendering | 510 ms |
| Garbage Collection | 199 ms |
| Parse HTML & CSS | 184 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
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
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Rediff Podcasts div.webstorysection > h2.sechd > a > img | imworld.rediff.com/worldrediff/pix/podcast-logo.webp |
div#div_advt_Bottom > ins#revive-0-1 > a > img div#div_advt_Bottom > ins#revive-0-1 > a > img | imworld.rediff.com/worldrediff/pix/blank.gif |
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.
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 |
|---|
div.flexcenter > div.fnt1 > ins#revive-0-0 > vdo#v-rediff-v11-0 div.flexcenter > div.fnt1 > ins#revive-0-0 > vdo#v-rediff-v11-0 |
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 |
|---|
4 min read div.card > div.firstnews > div.fnewstime > div.floatL |
6 hours ago div.card > div.firstnews > div.fnewstime > div.floatR |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
14 min read div.hzcard > div.hzcopy > div.ttoread > div |
15 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
7 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
8 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
12 min read div.hzcard > div.hzcopy > div.ttoread > div |
20 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
8 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
5 min read body > div.bigcard > div.ttoread > div |
20 hours ago body > div.bigcard > div.ttoread > div |
2 min read div.divtwocolums > div.item > div.ttoread > div |
18 hours ago div.divtwocolums > div.item > div.ttoread > div |
9 min read div.divtwocolums > div.item > div.ttoread > div |
21 hours ago div.divtwocolums > div.item > div.ttoread > div |
4 min read div.divtwocolums > div.item > div.ttoread > div |
15 hours ago div.divtwocolums > div.item > div.ttoread > div |
3 min read div.divtwocolums > div.item > div.ttoread > div |
19 hours ago div.divtwocolums > div.item > div.ttoread > div |
1 min read div.hzcard > div.hzcopy > div.ttoread > div |
14 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
14 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
1 day ago div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
16 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
8 min read div.hzcard > div.hzcopy > div.ttoread > div |
8 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 hours ago body > div.bigcard > div.ttoread > div |
5 hours ago div.divtwocolums > div.item > div.ttoread > div |
5 hours ago div.divtwocolums > div.item > div.ttoread > div |
5 hours ago div.divtwocolums > div.item > div.ttoread > div |
5 hours ago div.divtwocolums > div.item > div.ttoread > div |
5 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
5 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
6 hours ago div.hzcard > div.hzcopy > div.ttoread > div |
See More > body > div.webstorysection > p.alignR > a.podmore |
35:16 min body > div.videosection > div.bigcard > span.duration |
2:45 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
2:56 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
1:29 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
0:54 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
2:26 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
1:30 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
2:11 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
0:39 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
3:43 min div.videosection > div.bigcard > a > span.duration |
4:11 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
3:34 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
5:29 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
2:59 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
7:29 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
6:9 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
8:26 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
3:1 min div.videosection > div.divtwocolumsblack > div.item > span.duration |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
7 min read div.hzcard > div.hzcopy > div.ttoread > div |
7 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
9 min read div.hzcard > div.hzcopy > div.ttoread > div |
9 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
11 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
3 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
4 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
2 min read div.hzcard > div.hzcopy > div.ttoread > div |
11 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.hzcard > div.hzcopy > div.ttoread > div |
6 min read div.hzcard > div.hzcopy > div.ttoread > div |
5 min read div.missedrow > div.missright > div.ttoread > div |
9 min read div.missedrow > div.missright > div.ttoread > div |
2 min read div.missedrow > div.missright > div.ttoread > div |
2 min read div.missedrow > div.missright > div.ttoread > div |
7 min read div.missedrow > div.missright > div.ttoread > div |
8 min read div.missedrow > div.missright > div.ttoread > div |
4 min read div.missedrow > div.missright > div.ttoread > div |
2 min read div.missedrow > div.missright > div.ttoread > div |
6 min read div.missedrow > div.missright > div.ttoread > div |
5 min read div.missedrow > div.missright > div.ttoread > div |
15 min read div.missedrow > div.missright > div.ttoread > div |
6 min read div.missedrow > div.missright > div.ttoread > div |
5 min read div.missedrow > div.missright > div.ttoread > div |
7 min read div.missedrow > div.missright > div.ttoread > div |
3 min read div.missedrow > div.missright > div.ttoread > div |
2 min read div.missedrow > div.missright > div.ttoread > div |
2 min read div.missedrow > div.missright > div.ttoread > div |
4 min read div.missedrow > div.missright > div.ttoread > div |
13 min read div.missedrow > div.missright > div.ttoread > div |
5 min read div.missedrow > div.missright > div.ttoread > div |
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 |
|---|
body > div.logobar > div.followus > a body > div.logobar > div.followus > a |
body > div.logobar > div.followus > a body > div.logobar > div.followus > a |
body > div.logobar > div.followus > a body > div.logobar > div.followus > a |
body > div.logobar > div.followus > a body > div.logobar > div.followus > a |
div.advtcontainer > div#div_advt_Bottom > ins#revive-0-1 > a div.advtcontainer > div#div_advt_Bottom > ins#revive-0-1 > 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.
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| www.rediff.com/ | Allowed |
Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. Learn more about responsibly getting permission for notifications.
Performance issues directly impact user engagement and conversion rates.
Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. Learn how to provide responsive images.
Performance issues directly impact user engagement and conversion rates.
| URL | Displayed size | Actual size | Expected size | |
|---|---|---|---|---|
Iran refuses to send delegation for peace talks in Pak div.firstnews > div.div_big_img > a > img.big | im.rediff.com/390-250/news/2026/apr/21peace-talks-in-pakistan.jpg | 390 x 250 | 390 x 250 | 585 x 375 |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Topics | a.vdo.ai/core/assets/rtb_v10.10.0.js line 11, col 34172 |
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.
861 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.00 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
541 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.
3.26 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.85 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
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.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
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 | |
|---|---|---|---|
| s0.2mdn.net/sadbundle/5461282863131823818/jpg_69ceeaeea39ce072592155.jpg | 128.8 KiB | 89.3 KiB | |
head > link head > link | s0.2mdn.net/sadbundle/5461282863131823818/png_69ceeaf075282463982279.png | 89.6 KiB | 77.2 KiB |
image Health div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/student-o.jpg | 46.4 KiB | 42.2 KiB |
image Career div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/27edu-loans.jpg | 36.8 KiB | 32.6 KiB |
vdo#_vdo_ads_player_ai_27495 > vdo#vdoai_parentWrapperDiv > vdo.vdoai_parentDiv > video#vdo_ai_1258 vdo#_vdo_ads_player_ai_27495 > vdo#vdoai_parentWrapperDiv > vdo.vdoai_parentDiv > video#vdo_ai_1258 | /media_file/v-rediff-v10/source/uploads/thumbnails/177156... | 37.8 KiB | 28.4 KiB |
image Money div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/05bank-it.jpg | 27.2 KiB | 23.0 KiB |
Man Held For Cheating Patients At Lucknow Medical University div.mnewsrow > div.mnewsimg > a > img.rcorner | imworld.rediff.com/worldrediff/pix/latestnewsback.webp | 24.2 KiB | 20.3 KiB |
body.jar > div#google_image_div > a#aw0 > img.img_ad body.jar > div#google_image_div > a#aw0 > img.img_ad | tpc.googlesyndication.com/simgad/7423810833882497622 | 24.3 KiB | 12.1 KiB |
head > meta head > meta | s0.2mdn.net/sadbundle/5461282863131823818/png_69ceeaeef019a431740360.png | 11.0 KiB | 10.8 KiB |
UP Man Killed By Family Over Wedding Money Fears div.col_big > div.bigimage > a > img.rcorner | im.rediff.com/430-250/news/2024/nov/20up-police.jpg | 23.1 KiB | 6.1 KiB |
'AIADMK Is Trapped By BJP' div.mnewsrow > div.mnewsimg > a > img.rcorner | im.rediff.com/200-120/news/2026/apr/16aiadmk-1.jpg | 9.0 KiB | 5.1 KiB |
Has Baazigar Modi Fired His Best Shot? div.mnewsrow > div.mnewsimg > a > img.rcorner | im.rediff.com/200-120/news/2026/apr/18parliament-special-session3.jpg | 8.6 KiB | 4.7 KiB |
Discovering The Rhythm Of Bhutan div.mnewsrow > div.mnewsimg > a > img.rcorner | im.rediff.com/200-120/getahead/2026/apr/14-bhutan-dance1.jpg | 8.2 KiB | 4.3 KiB |
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| rediff.com/ | 209 ms |
| www.rediff.com/ | 190 ms |
| www.rediff.com/ | 0.0 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
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.
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| Unattributable | 585 ms | 100 ms | 0.0 ms |
| a.vdo.ai/core/dependencies_hbv4_latest/vdo.min.js?v= | 551 ms | 471 ms | 10 ms |
| /pagead/managed/js/gpt/m202604210101/pubads_impl.js?cb=31... | 549 ms | 451 ms | 37 ms |
| www.rediff.com/ | 500 ms | 24 ms | 3.3 ms |
| /pagead/managed/js/activeview/current/ufs_web_display.js | 416 ms | 317 ms | 27 ms |
| www.googletagmanager.com/gtag/js?id=G-3FM4PW27JR | 307 ms | 273 ms | 27 ms |
| a.vdo.ai/core/assets/rtb_v10.10.0.js | 122 ms | 109 ms | 10 ms |
| cdn.izooto.com/scripts/sdk/izooto.js | 119 ms | 66 ms | 16 ms |
| c.amazon-adsystem.com/aax2/apstag.js | 112 ms | 94 ms | 8.9 ms |
| www.googletagmanager.com/gtag/destination?id=G-8J9SC9WB3T&cx=c>m=4e64h1h1 | 110 ms | 86 ms | 19 ms |
| imasdk.googleapis.com/js/sdkloader/ima3.js | 100 ms | 82 ms | 11 ms |
| www.googletagmanager.com/gtag/js?id=G-8J9SC9WB3T | 77 ms | 27 ms | 49 ms |
| www.googletagmanager.com/gtag/js?id=UA-111630784-8&cx=c>m=4e64h1h1 | 70 ms | 61 ms | 8.5 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 2.4 s |
| Other | 662 ms |
| Style & Layout | 307 ms |
| Script Parsing & Compilation | 286 ms |
| Rendering | 170 ms |
| Garbage Collection | 95 ms |
| Parse HTML & CSS | 61 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
| An iframe on the page started a navigation that did not complete. | Not actionable |
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
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Rediff Podcasts div.maxwrap > h2.sechd > a > img | imworld.rediff.com/worldrediff/pix/podcast-logo.webp |
div#world_bottom1 > ins#revive-0-2 > a > img div#world_bottom1 > ins#revive-0-2 > a > img | imworld.rediff.com/worldrediff/pix/blank.gif |
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.
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 |
|---|
div.advtcontainer > div.fnt0 > ins#revive-0-0 > vdo#v-rediff-v10-0 div.advtcontainer > div.fnt0 > ins#revive-0-0 > vdo#v-rediff-v10-0 |
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 |
|---|
2 min read div.section > div.col_big > div.clearfix > p.floatL |
18 hours ago div.section > div.col_big > div.clearfix > p.floatR |
4 min read div.section > div.col_text > h2.hdlines > p.ttoread |
3 min read div.section > div.col_text > h2.hdlines > p.ttoread |
14 min read div.section > div.col_text > h2.hdlines > p.ttoread |
4 min read div.section > div.col_text > h2.hdlines > p.ttoread |
5 min read div.section > div.col_text > h2.hdlines > p.ttoread |
12 min read div.section > div.col_text > h2.hdlines > p.ttoread |
6 min read div.section > div.col_text > h2.hdlines > p.ttoread |
5 min read div.section > div.col_text > h2.hdlines > p.ttoread |
5 min read div.section > div.col_text > h2.hdlines > p.ttoread |
1 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
6 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
10 min read div.maxwrap > div.section > div.col_big > p.ttoread |
6 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
6 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.maxwrap > div.section > div.col_big > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 hours ago div.section > div.col_text > div.mnewsrow > p.ttoread |
5 hours ago div.section > div.col_text > div.mnewsrow > p.ttoread |
5 hours ago div.section > div.col_text > div.mnewsrow > p.ttoread |
5 hours ago div.section > div.col_text > div.mnewsrow > p.ttoread |
See More > body > div.maxwrap > p.alignR > a.seemore |
35:16 min div.section > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
11 hours ago div.section > div.wd23 > div.clearfix > p.floatR |
2:45 min div.section > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
12 hours ago div.section > div.wd23 > div.clearfix > p.floatR |
2:56 min div.section > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
15 hours ago div.section > div.wd23 > div.clearfix > p.floatR |
1:29 min div.section > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
12 hours ago div.section > div.wd23 > div.clearfix > p.floatR |
0:54 min div.vdsection > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
13 hours ago div.vdsection > div.wd23 > div.clearfix > p.floatR |
2:26 min div.vdsection > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
13 hours ago div.vdsection > div.wd23 > div.clearfix > p.floatR |
1:30 min div.vdsection > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
17 hours ago div.vdsection > div.wd23 > div.clearfix > p.floatR |
2:11 min div.vdsection > div.wd23 > div.clearfix > p.floatL |
min div.wd23 > div.clearfix > p.floatL > span.grey |
16 hours ago div.vdsection > div.wd23 > div.clearfix > p.floatR |
See More > body > div.maxwrap > p.alignR > a.seemore |
See More > body > div.photosection > p.alignR > a.seemore |
3:43 min div.wd23 > a.tvclick > div.clearfix > p.floatL |
3:11 min div.wd23 > a.tvclick > div.clearfix > p.floatL |
2:34 min div.wd23 > a.tvclick > div.clearfix > p.floatL |
4:29 min div.wd23 > a.tvclick > div.clearfix > p.floatL |
See More > body > div.maxwrap > p.alignR > a.seemore |
4 min read body > div.section > div.col_big > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
6 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
6 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read body > div.section > div.col_big > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read body > div.section > div.col_big > p.ttoread |
7 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
7 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
9 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
9 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read body > div.section > div.col_big > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
2 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read body > div.section > div.col_big > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
3 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
4 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
11 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
6 min read div.section > div.col_text > div.mnewsrow > p.ttoread |
5 min read div.section > div.missedsection > div.missedbox > p.ttoread |
9 min read div.section > div.missedsection > div.missedbox > p.ttoread |
2 min read div.section > div.missedsection > div.missedbox > p.ttoread |
2 min read div.section > div.missedsection > div.missedbox > p.ttoread |
7 min read div.section > div.missedsection > div.missedbox > p.ttoread |
4 min read div.section > div.missedsection > div.missedbox > p.ttoread |
2 min read div.section > div.missedsection > div.missedbox > p.ttoread |
6 min read div.section > div.missedsection > div.missedbox > p.ttoread |
3 min read div.section > div.missedsection > div.missedbox > p.ttoread |
7 min read div.section > div.missedsection > div.missedbox > p.ttoread |
13 min read div.section > div.missedsection > div.missedbox > p.ttoread |
5 min read div.section > div.missedsection > div.missedbox > p.ttoread |
15 min read div.section > div.missedsection > div.missedbox > p.ttoread |
5 min read div.section > div.missedsection > div.missedbox > p.ttoread |
These are opportunities to improve the legibility of your content.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.lfeedtv > a > div.widgetimg > img.rcorner div.lfeedtv > a > div.widgetimg > img.rcorner |
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 |
|---|
body > div.navbar > div.navbarsocial > a body > div.navbar > div.navbarsocial > a |
body > div.navbar > div.navbarsocial > a body > div.navbar > div.navbarsocial > a |
body > div.navbar > div.navbarsocial > a body > div.navbar > div.navbarsocial > a |
body > div.navbar > div.navbarsocial > a body > div.navbar > div.navbarsocial > a |
div.col_big > div.redifftvbox > div.lfeedtv > a div.col_big > div.redifftvbox > div.lfeedtv > a |
div.alignC > div#world_bottom1 > ins#revive-0-2 > a div.alignC > div#world_bottom1 > ins#revive-0-2 > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
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.
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| www.rediff.com/ | Allowed |
Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. Learn more about responsibly getting permission for notifications.
Performance issues directly impact user engagement and conversion rates.
Image display dimensions should match natural aspect ratio. Learn more about image aspect ratio.
Performance issues directly impact user engagement and conversion rates.
| URL | Aspect Ratio (Displayed) | Aspect Ratio (Actual) | |
|---|---|---|---|
Teenager Killed In Knife Attack In Delhi; Personal Enmity Suspected div.mnewsrow > div.mnewsimg > a > img.rcorner | imworld.rediff.com/worldrediff/pix/latestnewsback.webp | 200 x 120 (1.67) | 430 x 313 (1.37) |
Man Held For Cheating Patients At Lucknow Medical University div.mnewsrow > div.mnewsimg > a > img.rcorner | imworld.rediff.com/worldrediff/pix/latestnewsback.webp | 200 x 120 (1.67) | 430 x 313 (1.37) |
Sai Loves To Switch It Up div.col_big > div.bigimage > a > img.rcorner | im.rediff.com/430-250/getahead/2026/apr/17sai-tamhankar-lead3.jpg | 419 x 250 (1.68) | 430 x 250 (1.72) |
'Love Scenes Are Like Action Or Dance' div.col_big > div.bigimage > a > img.rcorner | im.rediff.com/430-250/movies/2026/apr/17matka-king-lead3.jpg | 419 x 250 (1.68) | 430 x 250 (1.72) |
Mamata Banerjee Can't Underestimate BJP div.col_big > div.bigimage > a > img.rcorner | im.rediff.com/430-250/news/2026/apr/12mamata-banerjee.jpg | 415 x 250 (1.66) | 430 x 250 (1.72) |
And Life Goes On In Tehran Amidst The War div.col_big > div.bigimage > a > img.rcorner | im.rediff.com/430-250/news/2026/apr/21daily-life-in-tehran1.jpg | 415 x 250 (1.66) | 430 x 250 (1.72) |
UP Man Killed By Family Over Wedding Money Fears div.col_big > div.bigimage > a > img.rcorner | im.rediff.com/430-250/news/2024/nov/20up-police.jpg | 419 x 250 (1.68) | 430 x 250 (1.72) |
image Career div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/27edu-loans.jpg | 197 x 130 (1.52) | 245 x 180 (1.36) |
image Career div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/27edu-loans.jpg | 197 x 130 (1.52) | 245 x 180 (1.36) |
image Health div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/student-o.jpg | 197 x 130 (1.52) | 245 x 180 (1.36) |
image Money div.col_big > div.gurubox > a > img.rcorner | gurus.rediff.com/rediffguru/pix/answerpix_new/05bank-it.jpg | 197 x 130 (1.52) | 245 x 180 (1.36) |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| SharedStorage | /pagead/managed/js/activeview/current/ufs_web_display.js line 252, col 234 |
| Topics | a.vdo.ai/core/assets/rtb_v10.10.0.js line 11, col 34172 |
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 |
|---|
div.lfeedtv > a > div.widgetimg > img.rcorner div.lfeedtv > a > div.widgetimg > img.rcorner |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback