Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@
## 2026-04-18 - Accessible Dynamically Updating Pseudo-Terminals
**Learning:** When building custom interactive terminal or log interfaces, standard input focus doesn't trigger screen readers to announce new lines added to the terminal output container. As a result, users relying on assistive technologies type commands but receive no audio feedback when the terminal responds.
**Action:** Apply `aria-live="polite"` and `aria-atomic="false"` to the container element where dynamic output is appended. This ensures screen readers announce only the new lines as they appear without interrupting the user's typing or reading the entire history.

## 2024-05-26 - Visually Hidden Skip to Content Links
**Learning:** Adding a "Skip to main content" link at the beginning of the `<body>` is crucial for keyboard and screen reader accessibility, particularly when a site has extensive navigation before the primary content. The `main` content area needs an `id="main-content"` so the anchor tag can route accurately.
**Action:** Always include a visually hidden 'Skip to main content' link immediately after the opening `<body>` tag that becomes visible on `:focus`. Ensure the main content container has a matching `id` attribute. This is a standard accessibility requirement for the project.
3 changes: 2 additions & 1 deletion concepts.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="container">
<h1>CHARLES WILLIAMS</h1>
Expand All @@ -24,7 +25,7 @@ <h1>CHARLES WILLIAMS</h1>
</div>
</header>

<main class="container">
<main id="main-content" class="container">
<section class="card">
<h2>Memory Shards: A Nodal Architecture for Resilient Associative Intelligence</h2>
<p><strong>Author:</strong> C. Williams</p>
Expand Down
3 changes: 2 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="container">
<h1>CHARLES WILLIAMS</h1>
Expand All @@ -24,7 +25,7 @@ <h1>CHARLES WILLIAMS</h1>
</div>
</header>

<main class="container">
<main id="main-content" class="container">
<section class="card full-width">
<h2>Get in Touch</h2>
<p>For specialized, Referral-Only Consultation and R&amp;D, please reach out via email or explore our open-source research and models.</p>
Expand Down
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="container">
<h1>CHARLES WILLIAMS Consulting</h1>
Expand All @@ -24,7 +25,7 @@ <h1>CHARLES WILLIAMS Consulting</h1>
</div>
</header>

<main class="container">
<main id="main-content" class="container">
<section id="digital-privacy" class="card">
<h2>Digital Privacy Isn't a Luxury. It’s Your Right.</h2>
<p>In a world that never stops watching, CHARLES WILLIAMS provides the tools, knowledge, and strategies to help everyday people reclaim their digital footprint.</p>
Expand Down
3 changes: 2 additions & 1 deletion products.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="container">
<h1>CHARLES WILLIAMS</h1>
Expand All @@ -25,7 +26,7 @@ <h1>CHARLES WILLIAMS</h1>
</div>
</header>

<main class="container">
<main id="main-content" class="container">
<section id="agentic-loop" class="card">
<h2>Localized Agentic Loop AI</h2>
<p>At the core of CHARLES WILLIAMS is our proprietary, model-agnostic agentic loop AI framework. Engineered specifically for robust deployment in zero-trust, disconnected environments where standard cloud-based LLMs fail. By utilizing localized <strong>Edge Processing</strong> on advanced SDR (Software Defined Radio) platforms, this framework enables continuous <strong>Adaptive RF Machine Learning (RFML)</strong> and real-time signal classification.</p>
Expand Down
22 changes: 22 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -324,3 +324,25 @@ footer a:hover {
.websdr-home-link {
display: inline-block;
}

/* Skip to main content link */
.skip-link {
position: absolute;
top: -100px;
left: 50%;
transform: translateX(-50%);
background-color: var(--accent-color);
color: #000000;
padding: 0.5rem 1rem;
z-index: 9999;
border-radius: 0 0 8px 8px;
text-decoration: none;
font-weight: bold;
transition: top 0.3s ease;
}

.skip-link:focus {
top: 0;
outline: 2px solid var(--white);
outline-offset: 2px;
}