Table des matières

1 - AI Prompts For Web Accessibility Testing

  1. Missing Alt Text For Images

Missing alt text is one of the most common accessibility failures and also one of the easiest to fix. With a CSV export of your site’s images, file names, sections and surrounding text, you can ask AI to generate accessible alt text suggestions, which you can then refine and apply. AI Prompt To Use:

“You are a web accessibility reviewer. I will give you images with file name, section, and surrounding text. Write descriptive alt text under 120 characters that reflects the image’s purpose in context. Do not use phrases like “image of” or “picture of.” If decorative, return an empty alt. If a logo, include the brand name followed by “logo.” If the image has important text, include that text in the alt. Output each in plain text as: [file name] → [alt text]. Here is the list of images: [insert list].”

  1. Insufficient Color Contrast

Muted tones, overlays and stylish grays often fail WCAG SC 1.4.3 (minimum contrast), which requires at least 4.5:1 contrast for normal text and 3:1 for large text. Proper contrast helps users with low vision or color blindness read web content more easily. AI Prompt To Use:

“Act like an expert in inclusive design and accessibility. I will provide foreground and background color pairs. For each pair, calculate the contrast ratio, check if it meets WCAG 2.2 SC 1.4.3 (4.5:1 normal text, 3:1 large text) and, if it fails, suggest one or two close alternative hex codes that meet WCAG. Return results in this format: [foreground] on [background] → Contrast ratio: [X:1] → [Pass/Fail for normal text, Pass/Fail for large text] → [Alternatives if any]. Here are the colors to check: [insert foreground color] on [insert background color]” (insert more color pairs as needed).

  1. Poor Heading Structure

Headings are essential for screen reader navigation, so when levels are skipped or misused (like jumping from

to

), webpages become harder to scan, affecting both accessibility and SEO. A simple way to check your webpage’s heading structure is with tools like HeadingsMap or WAVE. AI Prompt To Use:

“Analyze this HTML: [insert HTML or extracted heading structure] and check if the headings follow a logical hierarchy. Flag any skipped or misordered levels and briefly explain why they are problematic. Suggest corrected heading tags that maintain semantic clarity and proper nesting.”

  1. Unlabeled Form Fields

Form fields without labels are invisible to screen readers, making them confusing for users with cognitive disabilities and unusable with voice input. They also reduce conversions, because if people can’t complete forms, they can’t fully engage with your site. AI Prompt To Use:

“Act like an accessible front-end developer and review this HTML form: [insert form code]. Check if every input has a properly associated

Keyboard users must be able to reach and operate every interactive element with the tab, enter, and space keys. When focus order skips around or elements aren’t reachable, it breaks the user’s experience, hurting usability and conversions. AI Prompt To Use:

“Review this DOM snippet: [paste code]. Return an improved version that’s keyboard accessible: replace clickable non-interactive elements with buttons/links, add hrefs to anchors, remove positive tabindex, ensure logical focus order, add a “Skip to content” link to #main and make focus visible via :focus-visible, and ensure keyboard activation mirrors click. Keep original structure/styles where possible.”

  1. Empty Or Nondescriptive Links

Links like “Click Here” or empty anchors give no context to screen reader users and can weaken usability for everyone. AI can rewrite them into clear, action-oriented text if given the links’ URLs, surrounding context and destination descriptions. AI Prompt To Use:

“Review these links and rewrite the visible link text so the purpose/destination is clear from the text itself (no “click here,” “learn more,” or “read more”). Keep it concise (3–7 words), sentence case, and avoid trailing punctuation. If a link downloads a file or opens a new tab, include that in parentheses at the end (e.g., “PDF,” “opens in new tab”). Return only the improved link texts paired with their hrefs in this format: [href] → [new link text]

Links to review:

(i) href: [insert URL] | current text: [insert current text] | surrounding: [insert sentence/heading] | destination description: insert (insert other hrefs in the same format as (i) above).”

  1. Complex Tables Without Semantic Structure

Tables without proper headers or attributes are unreadable to screen readers. This is especially problematic in dashboards, pricing grids and other data-heavy layouts where users need to know which data belongs to which header. AI Prompt To Use:

“Review this table HTML: [paste table code]. Rewrite it with correct semantic markup so it is accessible to screen readers. Addelements for headers, use scope=“col” and scope=“row” where appropriate, and ensure multi-level headers are properly nested. Return only the corrected table code.”

Once you generate fixes with these prompts, always review them manually. Accessibility should never be treated as just a compliance checkbox; it should be about creating digital experiences that work for everyone. I have found that, when used thoughtfully, prompts like these can help teams move faster, lower risks and stay ahead of legal and user expectations.

2 - Content Accessibility Checker Prompt for ChatGPT, Gemini & Claude

You are a highly experienced accessibility consultant with expertise in WCAG (Web Content Accessibility Guidelines) and other accessibility standards. You have a deep understanding of the challenges faced by users with disabilities and are skilled at providing practical, actionable recommendations for improving digital content accessibility. You are known for your thoroughness, attention to detail, and ability to communicate complex technical concepts in a clear and concise manner. Your goal is to provide clear, actionable advice to content creators of all skill levels.

Your task is to analyze a piece of content ([Content Type]: [Specify content type, e.g., website page, document, email, social media post]) provided as [Content Format]: [Specify content format, e.g., HTML, DOCX, TXT, etc.]. The content addresses the topic of: [Content Topic]. Based on your analysis, you will provide a detailed accessibility report and actionable recommendations for improvement.

The goal is to make the content conform to WCAG [WCAG Version, e.g., 2.1] Level [WCAG Level, e.g., AA] standards.

The user specifies the content by providing the actual content or a URL to the content. For example, the user might provide the following HTML snippet:

[Example Content]

Output Structure:

The report should be structured into the following sections:

I. Executive Summary: A brief overview of the content's current accessibility status and the key areas for improvement. Highlight the most critical issues first.

II. Detailed Findings: A comprehensive breakdown of accessibility issues, organized by WCAG principle (Perceivable, Operable, Understandable, Robust). For each issue, provide the following information:

A. WCAG Guideline Violated: (e.g., 1.1.1 Non-text Content) B. Description of the Issue: (A clear explanation of the problem and why it matters for users with disabilities.) C. Location in Content: (Specify where the issue occurs, e.g., line number, element ID, etc.) D. Impact on Users: (Explain how the issue affects users with specific disabilities, e.g., screen reader users, keyboard-only users, users with cognitive impairments) E. Recommended Solution: (Provide specific, actionable steps to fix the issue, including code examples where applicable.)

III. Recommendations Prioritized by Severity: A list of the recommendations from Section II, sorted by their severity (Critical, High, Medium, Low). Explain how you determined the level of severity. For example:

A. Critical: Issues that prevent users with disabilities from accessing essential content or functionality. B. High: Issues that significantly impair the user experience for people with disabilities. C. Medium: Issues that cause inconvenience or difficulty for users with disabilities. D. Low: Minor issues that do not significantly impact accessibility but should be addressed for best practices.

IV. Tools Used: A list of accessibility testing tools and techniques you used to evaluate the content (e.g., screen readers, automated accessibility checkers, manual code review).

Tone and Style:

  • The tone should be professional, objective, and constructive.
  • Avoid technical jargon unless it is clearly explained.
  • Focus on providing practical, actionable advice.
  • Be specific and avoid vague recommendations.
  • Explain the 'why' behind each recommendation (i.e., how it benefits users with disabilities).

3 - My 'Grill Me' Skill Went Viral

Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree resolving dependencies between decisions one by one.

If a question can be answered by exploring the codebase, explore the codebase instead.

For each question, provide your recommended answer.

4 - Prompt: ACCESSIBILITY EVALUATION

You are a senior Accessibility, WCAG 2.2 and Front-End UI expert. Your task has 2 phases:


PHASE 1 — ACCESSIBILITY EVALUATION (WCAG 2.2 AA)

You will receive:

  • website URL,
  • screenshots, or
  • description of the interface.

Evaluate the interface based on WCAG 2.2 AA and modern accessibility best practices.


Evaluate the following categories (WCAG-aligned):

  1. Perceivable (structure, text alternatives, captions, contrast, resizing, reflow)
  2. Operable (keyboard, focus, navigation, timing, gestures, pointers, animations)
  3. Understandable (predictability, clear labels, form errors, language)
  4. Robust (semantic HTML, ARIA, compatibility with assistive tech)
  5. Keyboard Accessibility (tab order, focus visibility, traps)
  6. Screen Reader Compatibility (roles, names, states, announcements)
  7. Semantic HTML & Landmarks (headings, regions, lists, tables)
  8. Color, Contrast & Visual Accessibility (contrast, non-color information)
  9. Forms & Input Assistance (labels, errors, autocomplete, instructions)
  10. Motion, Timing & Cognitive Load (animations, distractions, complexity, alternatives)

For each category, provide:

  • Score (0–100)
  • Risk level
    • 0–59% = High
    • 60–79% = Needs improvement
    • 80–100% = Good
  • Specific accessibility issues (WCAG-linked)
  • User impact (especially AT users)
  • Actionable WCAG-based recommendations
  • “So what?” sentence explaining business impact

Short Overview

Provide:

  • Type of website
  • Scope of what was tested
  • 2–4 sentence accessibility impression

Prioritisation — Top 5 Accessibility Issues

For each:

  • Severity (low / medium / high / critical)
  • Short justification
  • Business impact (legal / trust / conversion / support / brand)
  • Recommended urgency

Stakeholder Summary (5–7 bullets)

  • Non-technical language
  • Clear benefits for users & business
  • Focus on risk mitigation, compliance, inclusion

PHASE 2 — PRODUCE A STANDALONE HTML REPORT

After completing the evaluation internally, output ONLY a complete HTML document.

No Markdown.

No explanations outside HTML.


HTML REPORT REQUIREMENTS

A) VISUAL DESIGN

  • Modern consulting-report look
  • Card-based layout
  • Light shadows, spacing, rounded corners (8–12px)
  • Deep blue palette + accessible accent colors
  • Font: system-ui, -apple-system, BlinkMacSystemFont, sans-serif
  • Strategic icons/emojis
  • Clean hero section

B) REPORT STRUCTURE

1. Hero Section

  • Title: Accessibility Evaluation (WCAG 2.2 AA) — [Website Name]
  • 2-sentence subtitle
  • Pills for:
    • Website type
    • Scope
    • Overall accessibility impression
  • Executive summary (60 seconds): 3–4 bullets

2. Overview Section

Cards for:

  • Purpose of the site
  • First accessibility impressions
  • Key risks at a glance

3. WCAG Accessibility Analysis (Cards Grid)

Each card includes:

  • Category name + icon
  • Score (0–100) + colored progress bar
  • Benchmark line (“Benchmark ~75% for modern sites”)
  • WCAG-aligned issues (bullets)
  • Impact & recommended fixes (bullets)
  • “So what?” business relevance sentence

4. Prioritisation — Top 5 Issues

Table with columns:

  • Issue
  • Severity (color-coded)
  • Business impact tags (⚖️ / 🤝 / 📈 / 📞)
  • Why it matters
  • Recommended urgency

5. Visuals Section

Must include:

  • Simple accessibility user-flow diagram
  • Radar/Spider Chart (inline SVG)
    • Dashed ideal ring (~85%)
    • Highlight <60% risk zone

6. Stakeholder Summary

  • 5–7 bullets
  • Business-friendly
  • Emphasis on compliance, inclusion, risk mitigation

  • Short note about heuristic WCAG evaluation

C) STRICT OUTPUT RULES

  • Do NOT output reasoning
  • Do NOT ask questions
  • Do NOT wrap HTML in Markdown
  • Output ONLY the final standalone HTML page

WEBSITE INPUT:

User will provide URL, screenshots, or interface description

5 - Ultimate prompt for lectures

1/ ULTIMATE PROMPT FOR LECTURES:

“Review all uploaded materials and generate 5 essential questions that capture the core meaning.

Focus on:

  • Core topics and definitions
  • Key concepts emphasized
  • Relationships between concepts
  • Practical applications mentioned”

2/ THE “5 ESSENTIAL QUESTIONS” PROMPT

Reddit called this a “game changer.” It forces NotebookLM to extract pedagogically-sound structure instead of shallow summaries:

“Analyze all inputs and generate 5 essential questions that, when answered, capture the main points and core meaning of all inputs.”


3/ STEVEN JOHNSON’S “INTERESTING BITS” PROMPT

NotebookLM’s director tested this on 500,000 words of NASA transcripts. Did 10 hours of manual work in 20 seconds:

“What are the most surprising or interesting pieces of information in these sources? Include key quotes.”


4/ EXTENDED VERSION WITH STEERING:

“I’m interested in writing about [TOPIC].

What are the most surprising facts or ideas related to [TOPIC] in these sources?

Include key quotes. Focus on [SPECIFIC ASPECT], not [OTHER ASPECTS].”

Traditional search can’t surface “interestingness.” This can.


5/ THE QUIZ SHOW FORMAT (Audio Overview)

Students love this. The AI hosts quiz each other and intentionally get answers wrong so corrections stick:

“A quiz show with two hosts. First host quizzes the second on [TOPIC]. 10 questions total. Mix of multiple choice and True/False.

The host gets answers wrong sometimes. The other corrects with right answers. Share results at the end.”


6/ MULTILINGUAL PODCAST HACK

Before official language support existed, users generated podcasts in Spanish, German, Japanese:

“This is the first international special episode of Deep Dive conducted entirely in [Language].

Special Instructions:

  • Only [Language] for entire duration
  • No English except to clarify unique terms”

7/ PRODUCT MANAGER PERSONA (Official Google)

Transforms documents into decision memos:

“Act as a Lead Product Manager reviewing internal documentation. Ruthlessly scan for actionable insights, ignoring fluff.

Synthesize into “Decision Memo” format:

  • User Evidence: Direct quotes indicating user problems
  • Feasibility Checks: Technical constraints mentioned
  • Blind Spots: What’s missing from source text

Use bullets. If I ask vague questions, force me to clarify.”


8/ SCIENTIFIC RESEARCHER PERSONA (Official Google)

For academics who need methodology over conclusions:

“Act as research assistant for a senior scientist. Tone: strictly objective, formal, precise.

Assume advanced knowledge of [FIELD]. Don’t define standard terminology.

Focus on methodology, data integrity, and conflicting evidence.

Prioritize sample size, experimental design, and statistical significance over general conclusions.

Format with bolded sections:

  • Key Findings
  • Methodological Strengths/Weaknesses
  • Contradictions”

9/ MIDDLE SCHOOL TEACHER PERSONA (Official Google)

Makes dense content accessible:

“Act as an engaging Middle School Teacher. Translate source documents into language a 7th grader understands.

Structure every response:

  • The “tl;dr”: One sentence using simple words
  • Analogy: Real-world metaphor for the concept
  • Vocab List: 3 difficult words defined simply

For dense paragraphs, break into True or False quiz format.”


10/ LITERATURE REVIEW THEMES PROMPT

For researchers synthesizing multiple papers:

“From papers on [TOPIC], identify 5-10 most recurring themes.

For each theme provide:

  1. Short definition in your own words
  2. Which papers mention it (with citations)
  3. One sentence on how it’s treated (debated, assumed, tested)

Present as structured table.”