Lighthouse Mobile
· 0 checks — Mobile Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.Detailed Report
Audit breakdown by category with detailed findings.
Performance
Insights
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
Performance issues directly impact user engagement and conversion rates.
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.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
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 |
|---|---|---|
| /css?family=Cabin%3A400%2C700%7CLato%3A400%2C700&subset=l... | 1.0 KiB | 784 ms |
| htmlcodex.com/wp-content/themes/gridlove/assets/css/min.css?ver=1.9.8 | 49.8 KiB | 1.1 s |
| /wp-content/plugins/meks-smart-social-widget/css/style.cs... | 6.1 KiB | 638 ms |
| htmlcodex.com/wp-content/plugins/meks-easy-ads-widget/css/style.css?ver=2.0.9 | 918 B | 480 ms |
| /wp-content/plugins/meks-easy-social-share/assets/css/mai... | 2.6 KiB | 480 ms |
| htmlcodex.com/wp-content/themes/gridlove-child/style.css?ver=1.9.8 | 2.6 KiB | 480 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.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| /pagead/managed/js/adsense/m202604170101/show_ads_impl_fy... | 1209600.0 s | 177.5 KiB |
| /beacon.min.js/v8c78df7c7c0f484497ecbca7046644da177152312... | 86400.0 s | 10.7 KiB |
| htmlcodex.com/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js | 2868.0 s | 4.4 KiB |
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 | |
|---|---|---|---|
HTML Codex div.gridlove-site-branding > span.site-title > a > img.gridlove-logo-mini | htmlcodex.com/wp-content/uploads/2020/12/htmlcodex-mini.png | 18.0 KiB | 17.5 KiB |
HTML Codex div.gridlove-site-branding > span.site-title > a > img.gridlove-logo-mini | htmlcodex.com/wp-content/uploads/2020/12/htmlcodex-mini-2x.png | 18.5 KiB | 17.2 KiB |
Industry Website Template article.gridlove-post > div.entry-image > a > img.attachment-gridlove-a3-orig | /htmlcodex.com/wp-content/uploads/2026/04/Industrix.jpg?r... | 56.6 KiB | 13.9 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| htmlcodex.com/ | 998 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.
Diagnostics
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 |
|---|---|---|
| htmlcodex.com/wp-content/themes/gridlove/assets/css/min.css?ver=1.9.8 | 49.2 KiB | 44.2 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 |
|---|---|---|---|
| htmlcodex.com/ | 778 ms | 4.8 ms | 0.6 ms |
| Unattributable | 570 ms | 26 ms | 0.0 ms |
| htmlcodex.com/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js | 501 ms | 380 ms | 6.3 ms |
| www.googletagmanager.com/gtag/js?id=G-JTM8L5EJGL | 337 ms | 269 ms | 65 ms |
| /pagead/managed/js/adsense/m202604170101/show_ads_impl_fy... | 323 ms | 231 ms | 77 ms |
| /pagead/js/adsbygoogle.js?client=ca-pub-4955347150592523&... | 116 ms | 93 ms | 22 ms |
| htmlcodex.com/wp-includes/js/wp-emoji-release.min.js?ver=6.9.4 | 95 ms | 89 ms | 4.5 ms |
| ep2.adtrafficquality.google/sodar/sodar2.js | 72 ms | 65 ms | 3.5 ms |
| c0.wp.com/c/6.9.4/wp-includes/js/jquery/jquery.min.js | 61 ms | 39 ms | 20 ms |
| /beacon.min.js/v8c78df7c7c0f484497ecbca7046644da177152312... | 55 ms | 28 ms | 6.4 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 | 1.3 s |
| Other | 739 ms |
| Style & Layout | 560 ms |
| Script Parsing & Compilation | 232 ms |
| Rendering | 130 ms |
| Parse HTML & CSS | 118 ms |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /pagead/managed/js/adsense/m202604170101/show_ads_impl_fy... | 177.5 KiB | 134.5 KiB |
| www.googletagmanager.com/gtag/js?id=G-JTM8L5EJGL | 99.4 KiB | 41.7 KiB |
| /pagead/js/adsbygoogle.js?client=ca-pub-4955347150592523&... | 54.1 KiB | 28.8 KiB |
| htmlcodex.com/wp-content/themes/gridlove/assets/js/min.js?ver=1.9.8 | 32.9 KiB | 25.6 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 | |
|---|---|
HTML Codex div.gridlove-site-branding > span.site-title > a > img.gridlove-logo-mini | htmlcodex.com/wp-content/uploads/2020/12/htmlcodex-mini-2x.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
Accessibility
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.
Contrast
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 |
|---|
177+ Free HTML Website Templates div.gridlove-cover-item > div.gridlove-cover-content > div.overlay-vh-center-custom > h1 |
div.overlay-vh-center-custom > div.custom-search-form > form > input div.overlay-vh-center-custom > div.custom-search-form > form > input |
Search div.overlay-vh-center-custom > div.custom-search-form > form > button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
INDUSTRIAL article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
MAINTENANCE & SERVICE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
NONPROFIT article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
MEDICAL & HOSPITAL article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
ECOMMERCE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
BEAUTY & HAIR article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
MAINTENANCE & SERVICE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
INDUSTRIAL article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
MAINTENANCE & SERVICE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
RESTAURANTS & FOOD article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
TEMPLATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
RESTAURANTS & FOOD article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
LANDING PAGE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
TEMPLATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
CORPORATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
CORPORATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
CORPORATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
MAINTENANCE & SERVICE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
TEMPLATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PERSONAL article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
RESTAURANTS & FOOD article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
ECOMMERCE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
CORPORATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
CORPORATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PERSONAL article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
RESTAURANTS & FOOD article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
TRAVEL & TOURISM article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
AGENCY article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
EDUCATION article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
ECOMMERCE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
PRO article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
BUSINESS article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
CORPORATE article.gridlove-post > div.entry-image > div.entry-category > a.gridlove-cat |
Live Demo div.box-inner-p > div.entry-meta > div.meta-item > a.gridlove-button |
VIEW ALL TEMPLATES div#content > div#gridlove-module-4 > div.gridlove-text-module-content > a.gridlove-button |
form#mc4wp-form-1 > div.mc4wp-form-fields > p > input.btn-subs form#mc4wp-form-1 > div.mc4wp-form-fields > p > input.btn-subs |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
HTML Codex div.gridlove-copyright > div.container > p > a |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Highly Customizable div.row > div.col-md-6 > div.gridlove-box > h4 |
Who we are div.row > div.col-lg-3 > div#custom_html-2 > h4.widget-title |
These are opportunities to improve keyboard navigation in your application.
Best practices
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.no-js html.no-js |
These items highlight common accessibility best practices.
Best Practices
SEO
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.
Content Best Practices
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| htmlcodex.com/about-us/ | Read More |
Format your HTML in a way that enables crawlers to better understand your app’s content.