Mobile 375 × 812

Desktop 1440 × 900

Score: 69 / 100
Based on 8 categories, 0 sections
Room to improve — your 4.3s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Mostly compliant — a few items need attention.
Good content signals with minor gaps.
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.
Cookie '__ddg10_' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie '__ddg1_' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie '__ddg8_' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie '__ddg9_' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
High impact, low effort — start here.
High impact, requires investment.
Nothing in this quadrant — good news.
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/272e2cf3-e864-40bf-aa4b-cc832596493d)<a href="https://beavercheck.com/results/272e2cf3-e864-40bf-aa4b-cc832596493d"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fhh.ru" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fhh.ruThis badge auto-updates with your latest scan result.
Your site has several issues that may be affecting user experience and business outcomes. Addressing the critical issues below would have the most immediate impact on your user trust.
9 barrier(s) likely increasing bounce by ~32%.
Page takes 4.3s to load
+12% bounceUsers abandon at ~3s — you're 1.8s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 7.7s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
1 form field(s) without a label
+2% bounceScreen readers skip unlabeled fields; autofill can't identify them; checkout abandonment spikes
Fix: Associate every input with a visible <label for="…">; add autocomplete attributes
Viewport disables user zoom
+2% bounceVisitors with low vision can't read the page — and some jurisdictions treat this as a legal risk
Fix: Remove user-scalable=no; drop maximum-scale if it's below 2
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, …)
16 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
3 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.
₽8,750 investment → ₽72,283/month returns
₽8,750
2h · 5 findings
₽72,283 /mo
~₽867,397 / year
No applicable regulations in this jurisdiction
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.
2.5 developer hours at ₽3500/hr
Based on Russia rates (₽3500/hr)
Start here for the best return on investment
₽91 / month at risk
~₽1,090 / year if left unfixed
₽91 /mo
12484.6 MB/mo × 7.273 RUB/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.30 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.30 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
7.71 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.070
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
11.21 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.
29.50 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 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.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| i.hh.ru/styles/globals/pages/__globals_1ae49e571417f5f68bd0078c9026670f.css | 49.7 KiB | 302 ms |
| i.hh.ru/build/magritte.13c99e94c2996658.css | 82.1 KiB | 302 ms |
| /styles/globals/pages/__bloko-imports_8bd68da9e5e6139c1ac... | 26.8 KiB | 151 ms |
| i.hh.ru/build/App.a235158c4ef3fac0.css | 18.3 KiB | 151 ms |
| i.hh.ru/build/vendors.4dd3e7d3e3489932.css | 20.4 KiB | 1.0 s |
| i.hh.ru/build/IndexPage-route.8db4d66102d5a624.css | 24.8 KiB |
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
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 | |
|---|---|---|---|
РТК-Сервис: как стать полевым инженером за 3 месяца div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/file/18364056.jpg | 147.4 KiB | 146.2 KiB |
Работать не ради галочки: как перестать тратить силы впустую и найти дело по ду… div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10345233.png | 105.8 KiB | 104.6 KiB |
ИТ-хаб Т-Банка: локации для работы и вдохновения div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/file/18369288.jpg | 38.1 KiB | 37.0 KiB |
Запустили новый раздел «Нетворк» в Сетке div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10346360.png | 12.5 KiB | 11.3 KiB |
25 предложений для тех, кто ищет подработку div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10346275.png | 9.5 KiB | 8.3 KiB |
div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hh.ru/employer-logo-round/3147332.jpeg | 9.1 KiB | 8.3 KiB |
div.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e div.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e | avatars.mds.yandex.net/get-direct/4984198/ZTR8uKr-VsJx2CG3gXs7cQ/y150 | 12.1 KiB | 7.9 KiB |
25 предложений для тех, кто хочет работать посменно div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10345189.jpg | 8.9 KiB | 7.8 KiB |
30 вакансий для тех, кто хочет работать удалённо без опыта div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10338047.jpg | 7.7 KiB | 6.5 KiB |
company-logo div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hh.ru/employer-logo-round/2450825.jpeg | 6.4 KiB | 5.6 KiB |
div#6531dbfb-6682-402a-94a1-0f4df3d88400 > div#AdFox_banner_414235126 > a > img div#6531dbfb-6682-402a-94a1-0f4df3d88400 > div#AdFox_banner_414235126 > a > img | banners.adfox.ru/260325/defaults/adfox/400505/164308_1471332.png | 25.8 KiB | 5.0 KiB |
company-logo div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/employer-logo-round/4264124.jpeg | 5.0 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.
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 |
|---|---|---|
| i.hh.ru/build/magritte.13c99e94c2996658.css | 81.9 KiB | 74.6 KiB |
| @font-face{font-family:hh sans;font-weight:400;font-style:normal;src:url("data:application/font-wof… | 72.6 KiB | 72.6 KiB |
| /*! * @license * MyFonts Webfont Build ID 2899353, 2014-10-10T07:34:22-0400 * * The fonts liste… | 46.4 KiB | 46.4 KiB |
| i.hh.ru/styles/globals/pages/__globals_1ae49e571417f5f68bd0078c9026670f.css | 49.5 KiB | 31.5 KiB |
| i.hh.ru/build/IndexPage-route.8db4d66102d5a624.css | 24.6 KiB | 24.1 KiB |
| i.hh.ru/build/vendors.4dd3e7d3e3489932.css | 20.2 KiB | 20.2 KiB |
| /styles/globals/pages/__bloko-imports_8bd68da9e5e6139c1ac... | 26.3 KiB | 20.1 KiB |
| i.hh.ru/build/App.a235158c4ef3fac0.css | 18.1 KiB | 17.5 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
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 | 12.9 s |
| Other | 2.3 s |
| Style & Layout | 1.4 s |
| Script Parsing & Compilation | 1.2 s |
| Rendering | 453 ms |
| Garbage Collection | 247 ms |
| Parse HTML & CSS | 201 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 with WebSocket cannot enter back/forward cache. | Pending browser support |
| 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 |
| Back/forward cache is disabled because WebSocket has been used. | 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
| URL | Transfer Size | Est Savings |
|---|---|---|
| i.hh.ru/build/vendors.6fd7ebf40f842d58.js | 472.0 KiB | 292.7 KiB |
| i.hh.ru/build/magritte.eaf65a7b3bae1cdc.js | 283.5 KiB | 184.4 KiB |
| i.hh.ru/build/App.eac24531ecf999ba.js | 290.5 KiB | 150.4 KiB |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 129.7 KiB | 87.4 KiB |
| i.hh.ru/build/bloko.a9e8f1abb68d9212.js | 102.2 KiB | 76.8 KiB |
| i.hh.ru/build/IndexPage-route.72af2841e1cdda5a.js | 94.1 KiB | 56.6 KiB |
| yandex.ru/ads/system/context.js | 103.8 KiB | 44.1 KiB |
| mc.yandex.ru/metrika/tag.js | 84.7 KiB | 42.7 KiB |
| i.hh.ru/build/7703.87c7d88ce41e9648.js | 43.7 KiB | 30.3 KiB |
| yastatic.net/partner-code-bundles/1304651/22d10f9d8e892aab.js | 31.8 KiB | 20.9 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size |
|---|---|
| i.hh.ru/build/vendors.6fd7ebf40f842d58.js | 473.8 KiB |
| i.hh.ru/build/App.eac24531ecf999ba.js | 290.9 KiB |
| i.hh.ru/build/magritte.eaf65a7b3bae1cdc.js | 283.9 KiB |
| i.hh.ru/magritte-fonts.css?v=06022026 | 271.6 KiB |
| i.hh.ru/styles/other/pages/__magritte-fonts_5baeb822891e756b91f85c6828a48bac.css | 271.2 KiB |
| hh.ru/ | 186.5 KiB |
| i.hh.ru/styles/other/pages/__fonts_3e2a20dec491e4294c7ec1c4f92c6567.css | 174.7 KiB |
| hhcdn.ru/file/18364056.jpg | 148.0 KiB |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 130.3 KiB |
| hhcdn.ru/icms/10345233.png | 106.3 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.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs | i.hh.ru/build/static/images/phone_negotiations__min_4efc635c68d5bff7.webp |
div#6531dbfb-6682-402a-94a1-0f4df3d88400 > div#AdFox_banner_414235126 > a > img div#6531dbfb-6682-402a-94a1-0f4df3d88400 > div#AdFox_banner_414235126 > a > img | banners.adfox.ru/260325/defaults/adfox/400505/164308_1471332.png |
div#08999642-9a5d-4f28-96a4-31be5da16b43 > div#AdFox_banner_4164840667 > a > img div#08999642-9a5d-4f28-96a4-31be5da16b43 > div#AdFox_banner_4164840667 > a > img | /get-adfox-content/2804317/260325_defaults_adfox_400505_1... |
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.
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
company-logo div > div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 |
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.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-cell___NQYg5_7-2-13 > div.magritte-item___h-S-Z_7-2-13 > button.magritte-action___JtMQB_6-0-2 div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-cell___NQYg5_7-2-13 > div.magritte-item___h-S-Z_7-2-13 > button.magritte-action___JtMQB_6-0-2 |
div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 |
div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 |
div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 |
div > div.bottom-section-wrapper--i60HENXccVwioHI3 > div.footer-social--a5wdjM6yXcYt0c14 > button.magritte-button___Pubhr_7-2-1 div > div.bottom-section-wrapper--i60HENXccVwioHI3 > div.footer-social--a5wdjM6yXcYt0c14 > button.magritte-button___Pubhr_7-2-1 |
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.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e div.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e |
div.magritte-flex-container___CVFEY_8-3-21 > div.magritte-text-dynamic___71-Al_5-0-1 > div.container--PykE7exZ1EcWXu06 > img div.magritte-flex-container___CVFEY_8-3-21 > div.magritte-text-dynamic___71-Al_5-0-1 > div.container--PykE7exZ1EcWXu06 > img |
div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body.s-friendly > iframe body.s-friendly > iframe |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.supernova-navi-wrapper > div.supernova-navi-inner-wrapper > div.supernova-navi > a.supernova-logo-wrapper div.supernova-navi-wrapper > div.supernova-navi-inner-wrapper > div.supernova-navi > a.supernova-logo-wrapper |
div.magritte-left-side___KpV0Z_7-2-13 > div.magritte-item___h-S-Z_7-2-13 > div > a.magritte-link___b4rEM_7-1-15 div.magritte-left-side___KpV0Z_7-2-13 > div.magritte-item___h-S-Z_7-2-13 > div > a.magritte-link___b4rEM_7-1-15 |
div.u20770577 > div.cca158a0b > div.nf38971a > a.e987ead49 div.u20770577 > div.cca158a0b > div.nf38971a > a.e987ead49 |
div > div#08999642-9a5d-4f28-96a4-31be5da16b43 > div#AdFox_banner_4164840667 > a div > div#08999642-9a5d-4f28-96a4-31be5da16b43 > div#AdFox_banner_4164840667 > a |
div.wrapper--JPKFEcpc11Ynimxa > div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a div.wrapper--JPKFEcpc11Ynimxa > div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a |
div.wrapper--JPKFEcpc11Ynimxa > div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a div.wrapper--JPKFEcpc11Ynimxa > div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a |
div.wrapper--JPKFEcpc11Ynimxa > div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a div.wrapper--JPKFEcpc11Ynimxa > div.links-bottom--z3ugPvdcvYkSNPAv > div.social-wrapper--zsSExP7QG0gLGOG7 > a |
div > div#6531dbfb-6682-402a-94a1-0f4df3d88400 > div#AdFox_banner_414235126 > a div > div#6531dbfb-6682-402a-94a1-0f4df3d88400 > div#AdFox_banner_414235126 > 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.
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 |
|---|
Загрузить в Google Play div.magritte-container___mF4Tb_7-2-13 > div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span |
Посмотреть все div.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-button-view___53Slm_7-2-1 > span.magritte-button__content___BXYU0_7-2-1 > span.magritte-button__label___zplmt_7-2-1 |
1 398 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
66 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
8 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
Посмотреть все div.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-button-view___53Slm_7-2-1 > span.magritte-button__content___BXYU0_7-2-1 > span.magritte-button__label___zplmt_7-2-1 |
34 660 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
25 048 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
22 314 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
22 121 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
19 104 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
18 976 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
17 989 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
16 521 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
16 327 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
15 643 div.magritte-item___h-S-Z_7-2-13 > div.magritte-label___pc2l4_7-2-13 > div.magritte-text-dynamic___71-Al_5-0-1 > div.magritte-text___pbpft_5-0-1 |
Посмотреть все div.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-button-view___53Slm_7-2-1 > span.magritte-button__content___BXYU0_7-2-1 > span.magritte-button__label___zplmt_7-2-1 |
Размещение вакансий a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Поиск по резюме a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
О компании a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Наши вакансии a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Реклама на сайте a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Требования к ПО a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Безопасный HeadHunter a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
HeadHunter API a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Партнерам a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Инвесторам a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Каталог компаний a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Поиск по вакансиям в Москве a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Работа рядом с метро a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Сетка: соцсеть для нетворкинга span.magritte-text___tkzIl_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
hh PRO a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Готовое резюме a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Все сервисы a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Профориентация a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Хочу у вас работать a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Производственный календарь a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Экспертная рекомендация a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Рынок труда a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
О компаниях в игровой форме a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Жизнь в компании a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
ИТ-проекты a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Рейтинг работодателей России a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Карьера для молодых специалистов a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Школа программистов a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Карьера в некоммерческих организациях a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Этика и комплаенс a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Оказание услуг a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Использование сайтов a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Защита персональных данных a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Пользовательское соглашение a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
ИТ аккредитация a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
На информационном ресурсе hh.ru применяются рекомендательные технологии (информ… div.magritte-grid-column___rhP24_3-0-2 > div > div.magritte-text___pbpft_5-0-1 > span |
применяются рекомендательные технологии div > div.magritte-text___pbpft_5-0-1 > span > a.bloko-link |
© 2026 ООО «Хэдхантер» div.magritte-text___pbpft_5-0-1 > div.bottom-section--vnNjGphQlvkg8Cdb > span > div.magritte-text___pbpft_5-0-1 |
Всё верно div.bloko-notification__footer > div.wrapper--B4GYKGFRf3oST7B_ > button.bloko-button > span |
Выбрать другой div.bloko-notification__footer > div.wrapper--B4GYKGFRf3oST7B_ > button.bloko-button > span |
These are opportunities to improve the legibility of your content.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
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.desktop html.desktop |
These items highlight common accessibility best practices.
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
перейти к поиску body.s-friendly > div.a11y-fast-nav > a |
These are opportunities to improve keyboard navigation in your application.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: net::ERR_FAILED | |
Failed to load resource: net::ERR_FAILED | |
yastatic.net/partner-code-bundles/1304651/b180e16251f023ab.js line 1, col 2649 | iframe#AdFox_iframe_414235126 Adfox transport frame was moved |
yastatic.net/partner-code-bundles/1304651/b180e16251f023ab.js line 1, col 2649 | iframe#AdFox_iframe_4164840667 Adfox transport frame was moved |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
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.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e div.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e |
div.magritte-flex-container___CVFEY_8-3-21 > div.magritte-text-dynamic___71-Al_5-0-1 > div.container--PykE7exZ1EcWXu06 > img div.magritte-flex-container___CVFEY_8-3-21 > div.magritte-text-dynamic___71-Al_5-0-1 > div.container--PykE7exZ1EcWXu06 > img |
div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs |
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.76 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.76 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.29 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.039
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
3.64 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.
7.41 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 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 | |
|---|---|---|---|
div > div#7bbdd5b6-bb88-402c-94d7-24c4bb77739a > a.g73a5bf50 > img div > div#7bbdd5b6-bb88-402c-94d7-24c4bb77739a > a.g73a5bf50 > img | /get-adfox-content/2462621/260422_adfox_3549140_15918895.... | 672.7 KiB | 480.5 KiB |
РТК-Сервис: как стать полевым инженером за 3 месяца div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/file/18364056.jpg | 147.4 KiB | 147.0 KiB |
Работать не ради галочки: как перестать тратить силы впустую и найти дело по ду… div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10345233.png | 105.8 KiB | 105.4 KiB |
ИТ-хаб Т-Банка: локации для работы и вдохновения div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/file/18369288.jpg | 38.1 KiB | 37.8 KiB |
div#ec4d9f9d-b418-425b-9d68-9842420b6ace > div#AdFox_banner_3363443705 > a > img div#ec4d9f9d-b418-425b-9d68-9842420b6ace > div#AdFox_banner_3363443705 > a > img | /get-adfox-content/2804317/260325_defaults_adfox_400505_1... | 18.4 KiB | 14.4 KiB |
div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs | i.hh.ru/build/static/images/phone_negotiations__min_4efc635c68d5bff7.webp | 16.6 KiB | 12.3 KiB |
Запустили новый раздел «Нетворк» в Сетке div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10346360.png | 12.5 KiB | 12.1 KiB |
div.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e div.t2ebeb1ce > div.kc223781a > div.d3bed6466 > img.o24ecf12e | avatars.mds.yandex.net/get-direct/4593589/zL3SNaTOQvkkGaHNwOlOOA/wy300 | 16.1 KiB | 9.9 KiB |
company-logo div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/employer-logo-round/3402021.jpeg | 9.5 KiB | 9.2 KiB |
25 предложений для тех, кто ищет подработку div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10346275.png | 9.5 KiB | 9.1 KiB |
25 предложений для тех, кто хочет работать посменно div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10345189.jpg | 8.9 KiB | 8.6 KiB |
div#c490520e-4406-4648-bee7-ddd189049342 > div#AdFox_banner_601315740 > a > img div#c490520e-4406-4648-bee7-ddd189049342 > div#AdFox_banner_601315740 > a > img | /get-adfox-content/2774030/250804_defaults_adfox_400505_1... | 12.3 KiB | 8.1 KiB |
30 вакансий для тех, кто хочет работать удалённо без опыта div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10338047.jpg | 7.7 KiB | 7.3 KiB |
company-logo div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hh.ru/employer-logo-round/2450825.jpeg | 6.4 KiB | 6.1 KiB |
Как ИИ меняет профессии и кому нужно учиться с ним работать div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/icms/10345680.jpg | 6.4 KiB | 6.0 KiB |
company-logo div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hhcdn.ru/employer-logo-round/4264124.jpeg | 5.0 KiB | 4.8 KiB |
div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hh.ru/employer-logo-round/3857703.png | 4.7 KiB | 4.5 KiB |
div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 > img.magritte-avatar-image___05p9Z_8-1-2 | hh.ru/employer-logo-round/3406505.png | 4.5 KiB | 4.2 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| i.hh.ru/build/IndexPage-route.8db4d66102d5a624.css | 25.1 KiB | |
| i.hh.ru/build/App.a235158c4ef3fac0.css | 18.3 KiB | |
| i.hh.ru/styles/globals/pages/__globals_1ae49e571417f5f68bd0078c9026670f.css | 49.7 KiB | |
| /styles/globals/pages/__bloko-imports_8bd68da9e5e6139c1ac... | 26.5 KiB | |
| i.hh.ru/build/magritte.13c99e94c2996658.css | 82.1 KiB | 82 ms |
| i.hh.ru/build/vendors.4dd3e7d3e3489932.css | 20.4 KiB | 375 ms |
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
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.
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 |
|---|---|---|
| i.hh.ru/build/magritte.13c99e94c2996658.css | 81.9 KiB | 81.9 KiB |
| @font-face{font-family:hh sans;font-weight:400;font-style:normal;src:url("data:application/font-wof… | 72.6 KiB | 72.6 KiB |
| /*! * @license * MyFonts Webfont Build ID 2899353, 2014-10-10T07:34:22-0400 * * The fonts liste… | 46.4 KiB | 46.4 KiB |
| i.hh.ru/styles/globals/pages/__globals_1ae49e571417f5f68bd0078c9026670f.css | 49.5 KiB | 31.6 KiB |
| i.hh.ru/build/IndexPage-route.8db4d66102d5a624.css | 24.6 KiB | 23.3 KiB |
| /styles/globals/pages/__bloko-imports_8bd68da9e5e6139c1ac... | 26.3 KiB | 20.6 KiB |
| i.hh.ru/build/vendors.4dd3e7d3e3489932.css | 20.2 KiB | 20.2 KiB |
| i.hh.ru/build/App.a235158c4ef3fac0.css | 18.1 KiB | 16.7 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| i.hh.ru/build/vendors.6fd7ebf40f842d58.js | 2.2 s | 1.4 s | 83 ms |
| i.hh.ru/shared/remote.xhhshared.6b568f0b6e68fb87.js | 1.2 s | 1.2 s | 0.5 ms |
| Unattributable | 685 ms | 32 ms | 0.0 ms |
| i.hh.ru/shared/650.696cd6ab57025f1a.js | 481 ms | 435 ms | 4.9 ms |
| hh.ru/ | 364 ms | 24 ms | 4.6 ms |
| top-fwz1.mail.ru/js/code.js | 257 ms | 232 ms | 1.5 ms |
| yandex.ru/ads/system/context.js | 243 ms | 170 ms | 12 ms |
| i.hh.ru/build/appEntryPoint.a66c9b142c79d94e.js | 194 ms | 187 ms | 1.4 ms |
| privacy-cs.mail.ru/static/sync-loader.js | 100 ms | 84 ms | 2.7 ms |
| mc.yandex.ru/metrika/tag.js | 89 ms | 72 ms | 15 ms |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 51 ms | 27 ms | 19 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 | 4.0 s |
| Other | 1.2 s |
| Style & Layout | 385 ms |
| Script Parsing & Compilation | 317 ms |
| Garbage Collection | 179 ms |
| Rendering | 147 ms |
| Parse HTML & CSS | 55 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 with WebSocket cannot enter back/forward cache. | Pending browser support |
| 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 |
| Back/forward cache is disabled because WebSocket has been used. | Not actionable |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| i.hh.ru/build/firebase.c1fdb7ef1078a8e2.js | 14.3 KiB | 4.8 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 |
|---|---|---|
| i.hh.ru/build/vendors.6fd7ebf40f842d58.js | 472.0 KiB | 290.4 KiB |
| i.hh.ru/build/magritte.eaf65a7b3bae1cdc.js | 283.5 KiB | 181.1 KiB |
| i.hh.ru/build/App.eac24531ecf999ba.js | 290.5 KiB | 149.2 KiB |
| yastatic.net/partner-code-bundles/1304651/00cc0164cd639ddf.js | 129.7 KiB | 87.1 KiB |
| i.hh.ru/build/bloko.a9e8f1abb68d9212.js | 102.2 KiB | 76.7 KiB |
| i.hh.ru/build/IndexPage-route.72af2841e1cdda5a.js | 94.1 KiB | 54.6 KiB |
| yandex.ru/ads/system/context.js | 103.8 KiB | 43.8 KiB |
| mc.yandex.ru/metrika/tag.js | 84.7 KiB | 42.1 KiB |
| i.hh.ru/build/7703.87c7d88ce41e9648.js | 43.7 KiB | 30.3 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
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 > div#7bbdd5b6-bb88-402c-94d7-24c4bb77739a > a.g73a5bf50 > img div > div#7bbdd5b6-bb88-402c-94d7-24c4bb77739a > a.g73a5bf50 > img | /get-adfox-content/2462621/260422_adfox_3549140_15918895.... |
div#ec4d9f9d-b418-425b-9d68-9842420b6ace > div#AdFox_banner_3363443705 > a > img div#ec4d9f9d-b418-425b-9d68-9842420b6ace > div#AdFox_banner_3363443705 > a > img | /get-adfox-content/2804317/260325_defaults_adfox_400505_1... |
div#c490520e-4406-4648-bee7-ddd189049342 > div#AdFox_banner_601315740 > a > img div#c490520e-4406-4648-bee7-ddd189049342 > div#AdFox_banner_601315740 > a > img | /get-adfox-content/2774030/250804_defaults_adfox_400505_1... |
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.
ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. Learn how to make ARIA dialog elements more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Ваш регион — Москва?
Да, верно
Нет, другой body.s-friendly > div.magritte-drop-base___uJNG4_7-2-3 |
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
company-logo div > div.magritte-icon-dynamic___KJ4yJ_14-2-0 > div > div.magritte-avatar___x--BK_8-1-2 |
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.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 div > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 |
div > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 div > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 |
div > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 div > div.social-wrapper--zsSExP7QG0gLGOG7 > a > button.magritte-action___JtMQB_6-0-2 |
div > div.bottom-section-wrapper--i60HENXccVwioHI3 > div.footer-social--a5wdjM6yXcYt0c14 > button.magritte-button___Pubhr_7-2-1 div > div.bottom-section-wrapper--i60HENXccVwioHI3 > div.footer-social--a5wdjM6yXcYt0c14 > button.magritte-button___Pubhr_7-2-1 |
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.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body.s-friendly > iframe body.s-friendly > iframe |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.supernova-navi-wrapper > div.supernova-navi-inner-wrapper > div.supernova-navi > a.supernova-logo-wrapper div.supernova-navi-wrapper > div.supernova-navi-inner-wrapper > div.supernova-navi > a.supernova-logo-wrapper |
div.supernova-dashboard-footer > div.supernova-dashboard-footer-app-buttons > div.supernova-app-buttons > a.supernova-app-button div.supernova-dashboard-footer > div.supernova-dashboard-footer-app-buttons > div.supernova-app-buttons > a.supernova-app-button |
div.supernova-dashboard-footer > div.supernova-dashboard-footer-app-buttons > div.supernova-app-buttons > a.supernova-app-button div.supernova-dashboard-footer > div.supernova-dashboard-footer-app-buttons > div.supernova-app-buttons > a.supernova-app-button |
div.supernova-dashboard-footer > div.supernova-dashboard-footer-app-buttons > div.supernova-app-buttons > a.supernova-app-button div.supernova-dashboard-footer > div.supernova-dashboard-footer-app-buttons > div.supernova-app-buttons > a.supernova-app-button |
div.HHC-Banner-Wrapper > div#ec4d9f9d-b418-425b-9d68-9842420b6ace > div#AdFox_banner_3363443705 > a div.HHC-Banner-Wrapper > div#ec4d9f9d-b418-425b-9d68-9842420b6ace > div#AdFox_banner_3363443705 > a |
div.work-in-company-banner > div#c490520e-4406-4648-bee7-ddd189049342 > div#AdFox_banner_601315740 > a div.work-in-company-banner > div#c490520e-4406-4648-bee7-ddd189049342 > div#AdFox_banner_601315740 > a |
div.top-section--GWpKNQgJF3ERghp2 > div > div.social-wrapper--zsSExP7QG0gLGOG7 > a div.top-section--GWpKNQgJF3ERghp2 > div > div.social-wrapper--zsSExP7QG0gLGOG7 > a |
div.top-section--GWpKNQgJF3ERghp2 > div > div.social-wrapper--zsSExP7QG0gLGOG7 > a div.top-section--GWpKNQgJF3ERghp2 > div > div.social-wrapper--zsSExP7QG0gLGOG7 > a |
div.top-section--GWpKNQgJF3ERghp2 > div > div.social-wrapper--zsSExP7QG0gLGOG7 > a div.top-section--GWpKNQgJF3ERghp2 > div > div.social-wrapper--zsSExP7QG0gLGOG7 > 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.
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 |
|---|
Продолжить div.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-button-view___53Slm_7-2-1 > span.magritte-button__content___BXYU0_7-2-1 > span.magritte-button__label___zplmt_7-2-1 |
Найти div.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-button-view___53Slm_7-2-1 > span.magritte-button__content___BXYU0_7-2-1 > span.magritte-button__label___zplmt_7-2-1 |
Я ищу сотрудника span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 > span.magritte-text___pbpft_5-0-1 |
Развернуть button.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Развернуть button.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
1 398 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
3 вакансии div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
25 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
59 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
3 вакансии div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
69 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
8 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
35 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
3 вакансии div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
9 вакансий div.magritte-text___pbpft_5-0-1 > div.magritte-content___iOGmF_7-2-13 > span > span |
Развернуть button.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Работа составляет большую часть жизни почти каждого из нас. Но ничто не вечно: … div > div.work-in-city--Bd4O8BU_qks0Pv9F > div.magritte-text___pbpft_5-0-1 > p.work-in-city-paragraph--zYf5WiGVlC4cA34I |
Однако зачастую при смене работы мы задумываемся не только о смене компании, но… div > div.work-in-city--Bd4O8BU_qks0Pv9F > div.magritte-text___pbpft_5-0-1 > p.work-in-city-paragraph--zYf5WiGVlC4cA34I |
Развернуть button.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Размещение вакансий a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Поиск по резюме a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
О компании a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Наши вакансии a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Реклама на сайте a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Требования к ПО a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Безопасный HeadHunter a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
HeadHunter API a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Партнерам a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Инвесторам a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Каталог компаний a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Поиск по вакансиям в Москве a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Работа рядом с метро a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Сетка: соцсеть для нетворкинга span.magritte-text___tkzIl_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
hh PRO a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Готовое резюме a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Все сервисы a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Профориентация a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Хочу у вас работать a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Производственный календарь a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Экспертная рекомендация a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Рынок труда a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
О компаниях в игровой форме a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Жизнь в компании a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
ИТ-проекты a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Рейтинг работодателей России a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Карьера для молодых специалистов a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Школа программистов a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Карьера в некоммерческих организациях a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Этика и комплаенс a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Оказание услуг a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Использование сайтов a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Защита персональных данных a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
Пользовательское соглашение a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
ИТ аккредитация a.magritte-link___b4rEM_7-1-15 > span.magritte-icon-dynamic___KJ4yJ_14-2-0 > span.magritte-text___pbpft_5-0-1 > span.magritte-text___tkzIl_7-1-15 |
На информационном ресурсе hh.ru применяются рекомендательные технологии (информ… div.magritte-grid-column___rhP24_3-0-2 > div > div.magritte-text___pbpft_5-0-1 > span |
применяются рекомендательные технологии div > div.magritte-text___pbpft_5-0-1 > span > a.bloko-link |
© 2026 ООО «Хэдхантер» div.magritte-text___pbpft_5-0-1 > div.bottom-section--vnNjGphQlvkg8Cdb > span > div.magritte-text___pbpft_5-0-1 |
These are opportunities to improve the legibility of your content.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
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.desktop html.desktop |
These items highlight common accessibility best practices.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: net::ERR_FAILED | |
Failed to load resource: net::ERR_FAILED | |
Failed to load resource: net::ERR_TIMED_OUT | |
yastatic.net/partner-code-bundles/1304651/b180e16251f023ab.js line 1, col 2649 | iframe#AdFox_iframe_3363443705 Adfox transport frame was moved |
yastatic.net/partner-code-bundles/1304651/b180e16251f023ab.js line 1, col 2649 | iframe#AdFox_iframe_601315740 Adfox transport frame was moved |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
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.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs div.footer-app-banner-redesign-content--hx_qeAaDbYwHDpvu > div.magritte-grid-column___rhP24_3-0-2 > div.footer-app-banner-redesign-phone-image-container--rOq3iEoOd282r_00 > img.footer-app-banner-redesign-phone-image--Dz6tH4P8RccyLdhs |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback