Skip to content

Instantly share code, notes, and snippets.

@aarongustafson
Last active September 1, 2016 16:24
Show Gist options
  • Save aarongustafson/bae52e8d6f990249008c0c53a2affc0c to your computer and use it in GitHub Desktop.
Save aarongustafson/bae52e8d6f990249008c0c53a2affc0c to your computer and use it in GitHub Desktop.
Code samples from Building in 10k: Markup for Accessibility, Clarity, and Affordance
<label for="n">What’s your name?</label>
<input id="n" name="n"
required aria-required="true"
autocorrect="off" autocapitalize="words"
placeholder="Sir Tim Berners Lee"
autocomplete="name"
>
<label for="n">What’s your name?</label>
<input id="n" name="n"
required aria-required="true"
autocorrect="off" autocapitalize="words"
>
<div role="banner">
… Banner content …
</div>
<label for="e">What’s the best email address to reach you at?</label>
<input type="email" id="e" name="e">
<div class="errors" role="alert" tabindex="0">
<p>Hmm, there seems to be an error with your submission.</p>
<ol>
<li>We need <a href="#n">your name</a></li>
</ol>
</div>
<header>
… Banner content goes here …
</header>
<!DOCTYPE html>
<html id="akapart" lang="en">
<head>
<meta charset="utf-8">
<title>10k Apart</title>
</head>
<body>
… My content went here …
</body>
</html>
<label for="n">What’s your name?</label>
<input id="n" name="n"
required aria-required="true"
autocorrect="off" autocapitalize="words"
placeholder="Sir Tim Berners Lee"
autocomplete="name"
value=""
aria-invalid="true"
aria-describedby="e-n"
>
<strong id="e-n">You want to get credit for your project right? Please provide your name.</strong>
<main>
… Primary content goes here …
</main>
<label for="n">What’s your name?</label>
<input id="n" name="n">
<nav aria-label="Main Navigation">
<ul>
<li><a href="/faq">Read the Rules</a></li>
… Navigation continues …
</ul>
</nav>
<nav aria-label="Main Navigation">
… Navigation goes here …
</nav>
<label for="n">What’s your name?</label>
<input id="n" name="n"
required aria-required="true"
autocorrect="off" autocapitalize="words"
placeholder="Sir Tim Berners Lee"
>
<label for="n">What’s your name?</label>
<input id="n" name="n"
required aria-required="true"
>
<header>
… Banner content goes here …
<nav aria-label="Main Navigation">
… Navigation goes here …
</nav>
</header>
<main>
… Primary content goes here …
</main>
<footer>
… Copyright, etc. goes here …
</footer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment