somascope
1/8/2020 - 4:32 PM

a11y basic

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Page title - Website name</title>
</head>
<body>
  <a href="#main" class="onlyVisibleOnFocus">Skip to content</a>
  
  <header>
    <nav>...</nav>
  </header>

  <main id="main">
    <h1>The page title</h1>
    <p>Some content</p>
  </main>
  
  <footer>
    ...
  </footer>
</body>
</html>