Created
April 12, 2012 15:31
-
-
Save wemakewaves/2368230 to your computer and use it in GitHub Desktop.
Accessible breadcrumbs using ARIA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment