Skip to main content

Talk: Practically Accessible

This talk consists of multiple slides, each contained within its own section. Each section has a link at the end to the next section.

Slide 14: Landmarks

Before
<div>
  <div>
    <div> <!-- no landmark -->
      <a href="https://example.org/"> Home </a>
      <a href="#content"> Status </a>
After
<div>
  <div>
    <nav> <!-- landmark -->
      <a href="https://example.org/"> Home </a>
      <a href="#content"> Status </a>