Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 6: Navigating with HTML Links and Structuring Data with Tables!

Instruction

Accessibility Features for Tables

Accessibility ensures that tables are understandable for all users, including those using screen readers. HTML provides caption, headers, and scope attributes to help structure data logically.

Example Code with Accessibility:

<table>
  <caption>Total sales for books published from 2017 to 2021</caption>
  <thead>
    <tr>
      <th id="hdr_book" scope="col">Book</th...