Skip to content

Instantly share code, notes, and snippets.

@wemakewaves
Created April 12, 2012 15:31
Show Gist options
  • Save wemakewaves/2368230 to your computer and use it in GitHub Desktop.
Save wemakewaves/2368230 to your computer and use it in GitHub Desktop.
Accessible breadcrumbs using ARIA
<ul>
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="products.html" title="Products">Products</a></li>
<li><a href="shoes.html" title="Shoes">Shoes</a></li>
</ul>
<nav role="navigation">
<p id="breadcrumblabel">You are here:</p>
<ol id="breadcrumb" aria-labelledby="breadcrumblabel">
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="products.html" title="Products">Products</a></li>
<li><a href="shoes.html">Shoes</a></li>
</ol>
</nav>
<nav>
<p>
<a href="/" rel="index up up up">Main</a> >
<a href="/products/" rel="up up">Products</a> >
<a href="/products/dishwashers/" rel="up">Dishwashers</a> >
<a>Second hand</a>
</p>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment