CP SiteCheck New Scan Scan History

Homepage

https://visitdenver.com/

Saved to: audits/CO-Denver/2026-03-30/78f635a79f/homepage

Performance
50
Desktop
43
Mobile
Accessibility
89
Desktop
93
Mobile
Best Practices
77
Desktop
77
Mobile
SEO
85
Desktop
85
Mobile
Homepage screenshot
30 issues found
Fixed Issue Category WCAG Found on Responsibility
Elements use prohibited ARIA attributes

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.

Accessibility WCAG 4.1.2 Level A Desktop & Mobile
Elements with visible text labels do not have matching accessible names.

Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.

Accessibility WCAG 2.5.3 Desktop & Mobile
Lists do not contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).

Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.

Accessibility WCAG 1.3.1 Level A Desktop only
Touch targets do not have sufficient size or spacing.

Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.

Accessibility WCAG 2.5.8 Desktop & Mobile
Uses deprecated APIs

Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.

Best Practices Desktop & Mobile
Browser errors were logged to the console

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

Best Practices Desktop & Mobile
Missing source maps for large first-party JavaScript

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.

Best Practices Desktop & Mobile
Reduce JavaScript execution time

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 Desktop & Mobile
Use efficient cache lifetimes

A long cache lifetime can speed up repeat visits to your page. Learn more about caching.

Performance Desktop & Mobile
Layout shift culprits

Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.

Performance Desktop only
First Contentful Paint

First Contentful Paint marks the time at which the first text or image is painted. Learn more about the First Contentful Paint metric.

Performance Mobile only
Font display

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 Desktop & Mobile
Forced reflow

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 Desktop & Mobile
Improve image delivery

Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size

Performance Mobile only
Time to Interactive

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 Mobile only
Largest Contentful Paint

Largest Contentful Paint marks the time at which the largest text or image is painted. Learn more about the Largest Contentful Paint metric

Performance Mobile only
Avoid large layout shifts

These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS

Performance Desktop only
LCP breakdown

Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.

Performance Mobile only
Legacy JavaScript

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 Desktop & Mobile
Minimize main-thread work

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 Desktop & Mobile
Network dependency tree

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 Desktop & Mobile
Render blocking requests

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 Desktop & Mobile
Minify JavaScript

Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.

Performance Mobile only
Reduce unused JavaScript

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 Desktop & Mobile
Links are not crawlable

Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable

SEO Desktop & Mobile
Links do not have descriptive text

Descriptive link text helps search engines understand your content. Learn how to make links more accessible.

SEO Desktop & Mobile
ARIA role should be appropriate for the element

Ensure role attribute has an appropriate value for the element

Accessibility axe-core
Headings should not be empty

Ensure headings have discernible text

Accessibility axe-core
Elements marked as presentational should be consistently ignored

Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them

Accessibility axe-core
All page content should be contained by landmarks

Ensure all page content is contained by landmarks

Accessibility axe-core

Interior Page

https://visitdenver.com/things-to-do/

Saved to: audits/CO-Denver/2026-03-30/78f635a79f/interior

Performance
13
Desktop
28
Mobile
Accessibility
85
Desktop
88
Mobile
Best Practices
77
Desktop
77
Mobile
SEO
85
Desktop
85
Mobile
Interior Page screenshot
31 issues found
Fixed Issue Category WCAG Found on Responsibility
Elements use prohibited ARIA attributes

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.

Accessibility WCAG 4.1.2 Level A Desktop & Mobile
`[aria-*]` attributes do not have valid values

Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.

Accessibility WCAG 4.1.2 Level A Desktop & Mobile
Elements with visible text labels do not have matching accessible names.

Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.

Accessibility WCAG 2.5.3 Desktop & Mobile
Lists do not contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).

Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.

Accessibility WCAG 1.3.1 Level A Desktop only
Touch targets do not have sufficient size or spacing.

Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.

Accessibility WCAG 2.5.8 Desktop & Mobile
Uses deprecated APIs

Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.

Best Practices Desktop & Mobile
Browser errors were logged to the console

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

Best Practices Desktop & Mobile
Missing source maps for large first-party JavaScript

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.

Best Practices Desktop & Mobile
Reduce JavaScript execution time

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 Desktop & Mobile
Use efficient cache lifetimes

A long cache lifetime can speed up repeat visits to your page. Learn more about caching.

Performance Desktop & Mobile
Layout shift culprits

Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.

Performance Desktop & Mobile
Cumulative Layout Shift

Cumulative Layout Shift measures the movement of visible elements within the viewport. Learn more about the Cumulative Layout Shift metric.

Performance Desktop only
First Contentful Paint

First Contentful Paint marks the time at which the first text or image is painted. Learn more about the First Contentful Paint metric.

Performance Mobile only
Font display

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 Desktop & Mobile
Forced reflow

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 Desktop & Mobile
Time to Interactive

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 Mobile only
Largest Contentful Paint

Largest Contentful Paint marks the time at which the largest text or image is painted. Learn more about the Largest Contentful Paint metric

Performance Mobile only
Avoid large layout shifts

These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS

Performance Desktop & Mobile
LCP breakdown

Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.

Performance Desktop & Mobile
LCP request discovery

Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading

Performance Desktop & Mobile
Legacy JavaScript

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 Desktop & Mobile
Minimize main-thread work

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 Desktop & Mobile
Network dependency tree

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 Desktop & Mobile
Render blocking requests

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 Desktop & Mobile
Reduce unused CSS

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 Mobile only
Reduce unused JavaScript

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 Desktop & Mobile
Links are not crawlable

Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable

SEO Desktop & Mobile
Links do not have descriptive text

Descriptive link text helps search engines understand your content. Learn how to make links more accessible.

SEO Desktop & Mobile
ARIA role should be appropriate for the element

Ensure role attribute has an appropriate value for the element

Accessibility axe-core
Elements marked as presentational should be consistently ignored

Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them

Accessibility axe-core
All page content should be contained by landmarks

Ensure all page content is contained by landmarks

Accessibility axe-core
Ask AI