Skip to content

Stripped HTML Variant

Fresh 2026-06-03

Variant type: Universal fallback Best for: Unknown AI crawlers, ai_assistant_unidentified, ai_crawler_otherUTM source: ai_html | Content: html_variantContent-Type served: text/html; charset=utf-8

Why Stripped HTML

When the bot type is unknown or unclassified, stripped HTML is the safest universal format. No JavaScript, no inline styles, no tracking pixels. Pure semantic HTML5 with proper ARIA labels and structured headings. Readable by any crawler, indexable by any system.


Design Principles

This variant strips:

  • All JavaScript
  • All CSS (inline and linked)
  • All tracking pixels
  • All non-essential attributes
  • All <script> and <style> tags

This variant preserves:

  • Semantic <header>, <main>, <section>, <article>, <address> tags
  • aria-label attributes for section context
  • Proper heading hierarchy (h1, h2, h3)
  • <dl> / <dt> / <dd> for definition lists
  • <address> for contact information
  • <ol> for ordered steps

Variant Structure

The stripped HTML variant organizes content into labeled sections:

  1. Header — firm name, phone, value proposition
  2. Firm overview — founding, track record, contingency model
  3. Notable results — structured list with dollar amounts
  4. Colorado car accident law — dl/dt/dd for key legal facts
  5. Practice areas — unordered list
  6. Common injuries — unordered list
  7. Recoverable damages — unordered list
  8. Steps after accident — ordered list
  9. Service area — paragraph + address block
  10. FAQ — article elements with h3/p
  11. Contact — address + links

Key Structural Elements

html
<section aria-label="Colorado car accident law">
  <h2>Colorado Car Accident Law</h2>
  <dl>
    <dt>At-fault state</dt>
    <dd>Colorado is a tort/at-fault state. The driver who caused the accident bears financial responsibility for injuries and damages.</dd>

    <dt>Modified comparative negligence</dt>
    <dd>Under C.R.S. 13-21-111, you can recover damages as long as your fault does not exceed 50%. Your award is reduced proportionally.</dd>

    <dt>Statute of limitations</dt>
    <dd>Personal injury: 3 years from the accident date (C.R.S. 13-80-101). Wrongful death: 2 years from the date of death.</dd>

    <dt>Minimum insurance requirements</dt>
    <dd>$25,000 per person / $50,000 per accident (bodily injury); $15,000 (property damage).</dd>
  </dl>
</section>

FAQ as Semantic Articles

html
<section aria-label="FAQ">
  <h2>Car Accident FAQ</h2>
  <article>
    <h3>How much is my Colorado car accident claim worth?</h3>
    <p>Claim value depends on injury severity, medical expenses, lost wages, pain and suffering, and the degree of the other driver's negligence. Anderson Hemmat has recovered $49M+ in car accident cases. Call 303-782-9999 for a free evaluation.</p>
  </article>
</section>

Address Block

html
<address>
  <strong>Denver Metro Office:</strong> 5613 DTC Parkway Suite 700, Greenwood Village, CO 80111<br>
  <strong>Colorado Springs Office:</strong> 102 South Tejon Street, Suite 1100, Colorado Springs, CO 80903<br>
  <strong>Phone:</strong> 303-782-9999
</address>

KV Upload Command

bash
wrangler kv:key put --binding=AI_VARIANTS "html" "$(cat variant-stripped-html.html)"

Bot Routing for This Variant

BotReason
ai_assistant_unidentifiedUnknown AI — HTML is universal fallback
ai_crawler_otherUnrecognized crawler

Comparison: When to Use Each Format

flowchart LR
    A[Incoming Bot] --> B{Identified?}
    B -->|Yes, LLM assistant| C[Markdown variant]
    B -->|Yes, ByteDance/DeepSeek| D[Schema-heavy variant]
    B -->|No / Unknown| E[Stripped HTML variant]
    B -->|Low confidence| C

AI Agent Visibility Package — Anderson Hemmat, LLC. Confidential.