-
-
Save kelsS/638912bb686d9f15f01e8af8100561b4 to your computer and use it in GitHub Desktop.
Using ARIA roles with <header>, <footer> and <aside>
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
<!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> | |
<main role="main"> | |
<h1>The meat and potatos</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> | |
</main> | |
<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