{
    "id": 356,
    "date": "2026-09-09T10:04:31",
    "date_gmt": "2026-09-09T08:04:31",
    "guid": {
        "rendered": "https:\/\/cursiqa.com\/en\/blog\/website-accessibility-audit-small-business\/"
    },
    "modified": "2026-09-09T10:04:31",
    "modified_gmt": "2026-09-09T08:04:31",
    "slug": "website-accessibility-audit-small-business",
    "status": "publish",
    "type": "post",
    "link": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/",
    "title": {
        "rendered": "Run a Website Accessibility Audit Without Hiring a Specialist"
    },
    "content": {
        "rendered": "<p>You do not need a consultant to find most of what is broken on a small business site. A useful <strong>website accessibility audit<\/strong> is five passes you can run yourself in an afternoon with a keyboard, a browser, and a color picker. What follows is the sequence, the thresholds to measure against, worked examples of the failures you will actually hit, and a rule for sorting findings into fix-now and fix-later.<\/p>\n<p>Scope it before you start. Pick five to eight pages: your home page, your top service or product page, pricing, the contact form, one blog post, and the booking or checkout flow if you have one. Auditing every page is how this project dies in week two. Fix patterns on representative pages and the fixes usually propagate, because most of a site is the same header, footer, and template repeated.<\/p>\n<h2>Set Up Your Website Accessibility Audit in Ten Minutes<\/h2>\n<p>Open a spreadsheet with these columns: page URL, what is wrong, where on the page, which pass found it, severity, owner, status, date retested. Every finding gets one row. If a finding is not written down with a location specific enough for someone else to reproduce it, it will not get fixed.<\/p>\n<p>Then run one automated scan per page with a browser checker such as Lighthouse, WAVE, or axe DevTools. Treat the output as a starting inventory, not a verdict. Automated tools reliably catch a narrow band of problems: missing alt attributes, missing form labels, empty buttons, and contrast on plain text. They cannot tell you whether alt text is meaningful, whether tab order makes sense, or whether an error message explains what to do. That judgment is the manual passes below.<\/p>\n<p>One warning about clean scans. A page can pass an automated check and still be unusable with a keyboard. Do not stop at the green score.<\/p>\n<h2>Pass One: Navigate With the Keyboard Only<\/h2>\n<p>Push the mouse out of reach. Click once in the browser address bar, then press Tab repeatedly through the whole page. You are checking five things.<\/p>\n<ul>\n<li><strong>Reach.<\/strong> Can you land on every link, button, form field, menu toggle, slider control, and modal close button?<\/li>\n<li><strong>Visibility.<\/strong> Can you always see where you are? If focus vanishes for several presses, something is either hidden behind a sticky header or has had its outline removed in CSS.<\/li>\n<li><strong>Order.<\/strong> Does focus move in the order things appear on screen? Flex and grid layouts often reorder visually while the DOM order stays the same.<\/li>\n<li><strong>Activation.<\/strong> Does Enter follow links and do Enter and Space press buttons? Does Escape close menus, dropdowns, and dialogs?<\/li>\n<li><strong>Escape.<\/strong> Can you always get back out? Tab into an embedded video or a chat widget and try to tab out again. If you cannot, that is a keyboard trap and it is a blocker.<\/li>\n<\/ul>\n<p>The most common failure on small business sites is a mobile menu toggle built as a <em>div<\/em> with a click handler. It looks like a button, but it never receives keyboard focus, so keyboard users cannot open the navigation at all. The fix is a real <em>button<\/em> element. Retest immediately after.<\/p>\n<p>The second most common failure is a newsletter dialog that appears on load. Check that focus moves into it when it opens, stays inside while it is open, closes on Escape, and returns to the element that triggered it.<\/p>\n<h2>Pass Two: Measure Contrast Instead of Judging It<\/h2>\n<p>Contrast is the one part of this you should never eyeball. Use the eyedropper in your browser&#8217;s color picker, which reports the ratio directly. The WCAG 2.1 AA thresholds are:<\/p>\n<ul>\n<li><strong>4.5:1<\/strong> for normal body text.<\/li>\n<li><strong>3:1<\/strong> for large text, meaning about 24px regular or about 19px bold.<\/li>\n<li><strong>3:1<\/strong> for meaningful non-text elements: icons that carry information, input borders, and focus indicators.<\/li>\n<\/ul>\n<p>Check placeholder text, footer text, secondary buttons, link text inside colored callouts, text sitting on hero images, and the focus ring itself. Light gray on white and white on a brand yellow or orange are the usual offenders.<\/p>\n<p>When the failing color is your brand color, you do not have to rebrand. Add one darker variant of that hue to your palette and use it only where the color meets text or a button background. Keep the original for logos and large display headlines. Logos are exempt from the contrast requirement, and headlines above 24px only need 3:1.<\/p>\n<p>Text over photos is the other hard case. A gradient scrim or a solid color overlay behind the text block is more reliable than a text shadow, because the shadow does not change the measured ratio.<\/p>\n<h2>Pass Three: Alt Text That Actually Says Something<\/h2>\n<p>Alt text is not a description contest. It should give a non-visual reader the same information the image gives everyone else, and nothing more.<\/p>\n<ul>\n<li><strong>Decorative image<\/strong> \u2014 dividers, background textures, stock photos beside text that already says everything: use <em>alt=&#8220;&#8220;<\/em>. An empty alt is correct and intentional. A missing alt attribute is not; screen readers may fall back to reading the filename.<\/li>\n<li><strong>Informative image<\/strong> \u2014 describe what matters. Not &#8222;team photo&#8220; but &#8222;Three technicians in branded uniforms beside a service van.&#8220;<\/li>\n<li><strong>Image used as a link or button<\/strong> \u2014 describe the destination or action, not the picture. A logo linking home should read &#8222;Riverside Plumbing, home.&#8220;<\/li>\n<li><strong>Text inside an image<\/strong> \u2014 repeat the text verbatim.<\/li>\n<li><strong>Chart or infographic<\/strong> \u2014 state the takeaway in the alt, and put the underlying numbers in nearby HTML text or a table.<\/li>\n<\/ul>\n<p>Keep most alt text under roughly 125 characters. If you need more than that, the content belongs in the page, not in an attribute. And never keyword-stuff alt text; it reads as noise out loud and helps nobody.<\/p>\n<h2>Pass Four: Forms, Labels, and Error Messages<\/h2>\n<p>Forms are where accessibility failures cost you money directly, because a blocked form is a lost inquiry.<\/p>\n<p>Every input needs a visible <em>label<\/em> element tied to it with matching <em>for<\/em> and <em>id<\/em> values. A placeholder is not a label: it disappears the moment someone types, it is usually below contrast minimums, and it is not reliably announced. Group related radio buttons or checkboxes inside a <em>fieldset<\/em> with a <em>legend<\/em> so the question is announced with the options.<\/p>\n<p>Mark required fields in text, such as &#8222;Email (required),&#8220; rather than relying on a red asterisk alone. Add <em>autocomplete<\/em> attributes to name, email, phone, and address fields so browsers can fill them in.<\/p>\n<p>Then test the failure path, which almost nobody does. Submit the form empty using only the keyboard and answer three questions: Does the page tell you in words which fields failed and why? Does focus move to that message or to the first bad field? Would you still understand the errors if you could not see color at all? A red border with no text fails all three.<\/p>\n<p>If you use a captcha, make sure there is a non-visual alternative. If the form times out, warn the user and let them extend it.<\/p>\n<h2>Triage: What to Fix Now and What to Schedule<\/h2>\n<p>You will finish with more findings than you can fix this week. Score each row as a blocker, a major issue, or a minor one. A <strong>blocker<\/strong> means a task cannot be completed at all: a keyboard trap, an unreachable navigation toggle, an unlabeled checkout field. A <strong>major<\/strong> issue means the task is possible but painful, like poor focus visibility. A <strong>minor<\/strong> issue is inconsistent or cosmetic.<\/p>\n<p>Then apply one rule. Fix now: every blocker anywhere on a path that leads to contact, booking, or payment, plus every cheap fix regardless of severity \u2014 alt text, labels, a darker color token, restoring focus outlines. Fix later: component rewrites, third-party widgets, legacy PDFs, and anything needing a developer sprint. Give each later item a date and an owner, or &#8222;later&#8220; becomes &#8222;never.&#8220;<\/p>\n<p>For third-party chat, booking, or review widgets you cannot edit, log the vendor, open a support ticket, record their reply, and publish a plain fallback such as a phone number and email address next to the widget.<\/p>\n<p>Retest every fix with the same pass that found it and date the row. If you want the columns, severity scale, and per-page checklists already built, the <a href=\"\/en\/product\/website-accessibility-qa-remediation-tracker\/\">Website Accessibility QA &amp; Remediation Tracker<\/a> pairs a 12-page QA guide with a 9-sheet Excel tracker and supporting checklists so you are not designing the spreadsheet while you audit.<\/p>\n<p>One last caution. If you use an AI tool to draft alt text or suggest ARIA attributes, review every line before it ships \u2014 incorrectly applied ARIA is worse than none at all. The same habits in this <a href=\"\/en\/blog\/evaluate-ai-output-checklist\/\">checklist for evaluating AI output<\/a> apply here: check the claim, check the context, then ship.<\/p>\n<p>Run these five passes once, fix the blockers, and put the keyboard pass into your release checklist so new pages get checked before they go live. If you would rather work from prepared checklists and a tracker than build your own, the accessibility tracker above and the rest of the <a href=\"\/en\/shop\/\">Cursiqa workbook shop<\/a> are a reasonable next step.<\/p>",
        "protected": false
    },
    "excerpt": {
        "rendered": "<p>A five-pass accessibility audit you can run yourself in an afternoon: keyboard-only navigation, measured contrast, useful alt text, form labels, and a fix-now triage rule.<\/p>",
        "protected": false
    },
    "author": 1,
    "featured_media": 0,
    "comment_status": "open",
    "ping_status": "open",
    "sticky": false,
    "template": "",
    "format": "standard",
    "meta": {
        "_jetpack_memberships_contains_paid_content": false,
        "footnotes": ""
    },
    "categories": [
        33
    ],
    "tags": [
        82,
        81
    ],
    "class_list": [
        "post-356",
        "post",
        "type-post",
        "status-publish",
        "format-standard",
        "hentry",
        "category-business-productivity",
        "tag-small-business-website",
        "tag-website-accessibility-audit"
    ],
    "aioseo_notices": [],
    "aioseo_head": "<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.\" \/>\n\t<meta name=\"robots\" content=\"noindex, max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"adamat\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"sk_SK\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Cursiqa - Practical business systems\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Website Accessibility Audit: A DIY Guide for Owners\" \/>\n\t\t<meta property=\"og:description\" content=\"Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-09-09T08:04:31+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-09-09T08:04:31+00:00\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/cursiqa.com\/wp-content\/themes\/cursiqa-theme\/assets\/images\/cursiqa-og-default.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/cursiqa.com\/wp-content\/themes\/cursiqa-theme\/assets\/images\/cursiqa-og-default.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Website Accessibility Audit: A DIY Guide for Owners\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#blogposting\",\"name\":\"Website Accessibility Audit: A DIY Guide for Owners\",\"headline\":\"Run a Website Accessibility Audit Without Hiring a Specialist\",\"author\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/author\\\/adamat\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/#organization\"},\"datePublished\":\"2026-09-09T10:04:31+02:00\",\"dateModified\":\"2026-09-09T10:04:31+02:00\",\"inLanguage\":\"sk-SK\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#webpage\"},\"articleSection\":\"Business Productivity, small business website, website accessibility audit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cursiqa.com\\\/sk\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/category\\\/business-productivity\\\/#listItem\",\"name\":\"Business Productivity\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/category\\\/business-productivity\\\/#listItem\",\"position\":2,\"name\":\"Business Productivity\",\"item\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/category\\\/business-productivity\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#listItem\",\"name\":\"Run a Website Accessibility Audit Without Hiring a Specialist\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#listItem\",\"position\":3,\"name\":\"Run a Website Accessibility Audit Without Hiring a Specialist\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/category\\\/business-productivity\\\/#listItem\",\"name\":\"Business Productivity\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/#organization\",\"name\":\"Cursiqa\",\"description\":\"Practical business systems\",\"url\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/author\\\/adamat\\\/#author\",\"url\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/author\\\/adamat\\\/\",\"name\":\"adamat\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29c1b8f4eba0157a65532702a3c5a4cd463e99cb0df1229b16e22e69084ca585?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"adamat\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#webpage\",\"url\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/\",\"name\":\"Website Accessibility Audit: A DIY Guide for Owners\",\"description\":\"Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.\",\"inLanguage\":\"sk-SK\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/website-accessibility-audit-small-business\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/author\\\/adamat\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/blog\\\/author\\\/adamat\\\/#author\"},\"datePublished\":\"2026-09-09T10:04:31+02:00\",\"dateModified\":\"2026-09-09T10:04:31+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/#website\",\"url\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/\",\"name\":\"Cursiqa\",\"description\":\"Practical business systems\",\"inLanguage\":\"sk-SK\",\"publisher\":{\"@id\":\"https:\\\/\\\/cursiqa.com\\\/sk\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->",
    "aioseo_head_json": {
        "title": "Website Accessibility Audit: A DIY Guide for Owners",
        "description": "Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.",
        "canonical_url": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/",
        "robots": "noindex, max-image-preview:large",
        "keywords": "",
        "webmasterTools": {
            "miscellaneous": ""
        },
        "schema": {
            "@context": "https:\/\/schema.org",
            "@graph": [
                {
                    "@type": "BlogPosting",
                    "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#blogposting",
                    "name": "Website Accessibility Audit: A DIY Guide for Owners",
                    "headline": "Run a Website Accessibility Audit Without Hiring a Specialist",
                    "author": {
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/author\/adamat\/#author"
                    },
                    "publisher": {
                        "@id": "https:\/\/cursiqa.com\/sk\/#organization"
                    },
                    "datePublished": "2026-09-09T10:04:31+02:00",
                    "dateModified": "2026-09-09T10:04:31+02:00",
                    "inLanguage": "sk-SK",
                    "mainEntityOfPage": {
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#webpage"
                    },
                    "isPartOf": {
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#webpage"
                    },
                    "articleSection": "Business Productivity, small business website, website accessibility audit"
                },
                {
                    "@type": "BreadcrumbList",
                    "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#breadcrumblist",
                    "itemListElement": [
                        {
                            "@type": "ListItem",
                            "@id": "https:\/\/cursiqa.com\/sk#listItem",
                            "position": 1,
                            "name": "Home",
                            "item": "https:\/\/cursiqa.com\/sk",
                            "nextItem": {
                                "@type": "ListItem",
                                "@id": "https:\/\/cursiqa.com\/sk\/blog\/category\/business-productivity\/#listItem",
                                "name": "Business Productivity"
                            }
                        },
                        {
                            "@type": "ListItem",
                            "@id": "https:\/\/cursiqa.com\/sk\/blog\/category\/business-productivity\/#listItem",
                            "position": 2,
                            "name": "Business Productivity",
                            "item": "https:\/\/cursiqa.com\/sk\/blog\/category\/business-productivity\/",
                            "nextItem": {
                                "@type": "ListItem",
                                "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#listItem",
                                "name": "Run a Website Accessibility Audit Without Hiring a Specialist"
                            },
                            "previousItem": {
                                "@type": "ListItem",
                                "@id": "https:\/\/cursiqa.com\/sk#listItem",
                                "name": "Home"
                            }
                        },
                        {
                            "@type": "ListItem",
                            "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#listItem",
                            "position": 3,
                            "name": "Run a Website Accessibility Audit Without Hiring a Specialist",
                            "previousItem": {
                                "@type": "ListItem",
                                "@id": "https:\/\/cursiqa.com\/sk\/blog\/category\/business-productivity\/#listItem",
                                "name": "Business Productivity"
                            }
                        }
                    ]
                },
                {
                    "@type": "Organization",
                    "@id": "https:\/\/cursiqa.com\/sk\/#organization",
                    "name": "Cursiqa",
                    "description": "Practical business systems",
                    "url": "https:\/\/cursiqa.com\/sk\/"
                },
                {
                    "@type": "Person",
                    "@id": "https:\/\/cursiqa.com\/sk\/blog\/author\/adamat\/#author",
                    "url": "https:\/\/cursiqa.com\/sk\/blog\/author\/adamat\/",
                    "name": "adamat",
                    "image": {
                        "@type": "ImageObject",
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#authorImage",
                        "url": "https:\/\/secure.gravatar.com\/avatar\/29c1b8f4eba0157a65532702a3c5a4cd463e99cb0df1229b16e22e69084ca585?s=96&d=mm&r=g",
                        "width": 96,
                        "height": 96,
                        "caption": "adamat"
                    }
                },
                {
                    "@type": "WebPage",
                    "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#webpage",
                    "url": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/",
                    "name": "Website Accessibility Audit: A DIY Guide for Owners",
                    "description": "Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.",
                    "inLanguage": "sk-SK",
                    "isPartOf": {
                        "@id": "https:\/\/cursiqa.com\/sk\/#website"
                    },
                    "breadcrumb": {
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/#breadcrumblist"
                    },
                    "author": {
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/author\/adamat\/#author"
                    },
                    "creator": {
                        "@id": "https:\/\/cursiqa.com\/sk\/blog\/author\/adamat\/#author"
                    },
                    "datePublished": "2026-09-09T10:04:31+02:00",
                    "dateModified": "2026-09-09T10:04:31+02:00"
                },
                {
                    "@type": "WebSite",
                    "@id": "https:\/\/cursiqa.com\/sk\/#website",
                    "url": "https:\/\/cursiqa.com\/sk\/",
                    "name": "Cursiqa",
                    "description": "Practical business systems",
                    "inLanguage": "sk-SK",
                    "publisher": {
                        "@id": "https:\/\/cursiqa.com\/sk\/#organization"
                    }
                }
            ]
        },
        "og:locale": "sk_SK",
        "og:site_name": "Cursiqa - Practical business systems",
        "og:type": "article",
        "og:title": "Website Accessibility Audit: A DIY Guide for Owners",
        "og:description": "Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.",
        "og:url": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/",
        "article:published_time": "2026-09-09T08:04:31+00:00",
        "article:modified_time": "2026-09-09T08:04:31+00:00",
        "og:image": "https:\/\/cursiqa.com\/wp-content\/themes\/cursiqa-theme\/assets\/images\/cursiqa-og-default.jpg",
        "og:image:secure_url": "https:\/\/cursiqa.com\/wp-content\/themes\/cursiqa-theme\/assets\/images\/cursiqa-og-default.jpg",
        "og:image:width": 1200,
        "og:image:height": 630,
        "og:image:type": "image\/jpeg",
        "twitter:card": "summary_large_image",
        "twitter:title": "Website Accessibility Audit: A DIY Guide for Owners",
        "twitter:description": "Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list."
    },
    "aioseo_meta_data": {
        "post_id": "356",
        "title": "Website Accessibility Audit: A DIY Guide for Owners",
        "description": "Run a website accessibility audit on your small business site in an afternoon: keyboard pass, contrast checks, alt text, forms, and a fix-now triage list.",
        "keywords": null,
        "keyphrases": {
            "focus": {
                "keyphrase": "website accessibility audit",
                "score": 0,
                "analysis": []
            },
            "additional": []
        },
        "primary_term": null,
        "canonical_url": null,
        "og_title": null,
        "og_description": null,
        "og_object_type": "default",
        "og_image_type": "default",
        "og_image_custom_url": null,
        "og_image_custom_fields": null,
        "og_image_url": null,
        "og_image_width": null,
        "og_image_height": null,
        "og_video": null,
        "og_custom_url": null,
        "og_article_section": null,
        "og_article_tags": null,
        "twitter_use_og": false,
        "twitter_card": "default",
        "twitter_image_type": "default",
        "twitter_image_custom_url": null,
        "twitter_image_custom_fields": null,
        "twitter_image_url": null,
        "twitter_title": null,
        "twitter_description": null,
        "schema_type": "default",
        "schema_type_options": null,
        "schema": {
            "blockGraphs": [],
            "customGraphs": [],
            "default": {
                "data": {
                    "Article": [],
                    "Course": [],
                    "Dataset": [],
                    "FAQPage": [],
                    "Movie": [],
                    "Person": [],
                    "Product": [],
                    "ProductReview": [],
                    "Car": [],
                    "Recipe": [],
                    "Service": [],
                    "SoftwareApplication": [],
                    "WebPage": []
                },
                "graphName": "BlogPosting",
                "isEnabled": true
            },
            "graphs": []
        },
        "pillar_content": false,
        "robots_default": true,
        "robots_noindex": false,
        "robots_noarchive": false,
        "robots_nosnippet": false,
        "robots_nofollow": false,
        "robots_noimageindex": false,
        "robots_noodp": false,
        "robots_notranslate": false,
        "robots_max_snippet": null,
        "robots_max_videopreview": null,
        "robots_max_imagepreview": "large",
        "priority": null,
        "frequency": null,
        "local_seo": null,
        "limit_modified_date": false,
        "ai": null,
        "breadcrumb_settings": null,
        "seo_analyzer_scan_date": null,
        "created": "2026-09-09 10:04:31",
        "updated": "2026-09-09 08:04:33",
        "focus_keyword": "website accessibility audit",
        "additional_keywords": null,
        "truseo_locale": null
    },
    "aioseo_breadcrumb": "<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cursiqa.com\/sk\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cursiqa.com\/sk\/blog\/category\/business-productivity\/\" title=\"Business Productivity\">Business Productivity<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tRun a Website Accessibility Audit Without Hiring a Specialist\n\t\t<\/span><\/div>",
    "aioseo_breadcrumb_json": [
        {
            "label": "Home",
            "link": "https:\/\/cursiqa.com\/sk"
        },
        {
            "label": "Business Productivity",
            "link": "https:\/\/cursiqa.com\/sk\/blog\/category\/business-productivity\/"
        },
        {
            "label": "Run a Website Accessibility Audit Without Hiring a Specialist",
            "link": "https:\/\/cursiqa.com\/sk\/blog\/website-accessibility-audit-small-business\/"
        }
    ],
    "jetpack_sharing_enabled": true,
    "jetpack_featured_media_url": "",
    "_links": {
        "self": [
            {
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/posts\/356",
                "targetHints": {
                    "allow": [
                        "GET"
                    ]
                }
            }
        ],
        "collection": [
            {
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/posts"
            }
        ],
        "about": [
            {
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/types\/post"
            }
        ],
        "author": [
            {
                "embeddable": true,
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/users\/1"
            }
        ],
        "replies": [
            {
                "embeddable": true,
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/comments?post=356"
            }
        ],
        "version-history": [
            {
                "count": 0,
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/posts\/356\/revisions"
            }
        ],
        "wp:attachment": [
            {
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/media?parent=356"
            }
        ],
        "wp:term": [
            {
                "taxonomy": "category",
                "embeddable": true,
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/categories?post=356"
            },
            {
                "taxonomy": "post_tag",
                "embeddable": true,
                "href": "https:\/\/cursiqa.com\/sk\/wp-json\/wp\/v2\/tags?post=356"
            }
        ],
        "curies": [
            {
                "name": "wp",
                "href": "https:\/\/api.w.org\/{rel}",
                "templated": true
            }
        ]
    }
}