Skip to content

Instantly share code, notes, and snippets.

@ihorvorotnov
Forked from benschwarz/index.html
Last active August 29, 2015 22:42
Show Gist options
  • Save ihorvorotnov/b559a6ca74bf92a38754 to your computer and use it in GitHub Desktop.
Save ihorvorotnov/b559a6ca74bf92a38754 to your computer and use it in GitHub Desktop.
Using ARIA roles with <header>, <footer> and <aside>
<!doctype html>
<html>
<body>
<header role="banner">
<a href="/" rel="home">My company</a>
<nav role="navigation">
<a href="/about">About</a>
<a href="/contact">Contact</a>
</nav>
</header>
<section role="main">
<h1>The meat and potatos</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</section>
<footer role="contentinfo">
<p>© Copyright Ben Schwarz 2011</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment