1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33

content / test / data / accessibility / html / table-headers-on-all-sides.html [blame]

<!DOCTYPE html>
<html>
<head>
  <title>Table example - headers on all sides</title>
</head>
<body>
<table border=1>
  <tr>
    <td></td>
    <th>Red</th>
    <th>Green</th>
    <td></td>
  </tr>
  <tr>
    <th>Fruit</th>
    <td>strawberry</td>
    <td>lime</td>
    <th>Fruit</th>
  </tr>
  <tr>
    <th id="veggies">Veggies</th>
    <td>radish</td>
    <td>spinach</td>
    <th>Veggies</th>
  </tr>
  <tr>
    <td></td>
    <th>Red</th>
    <th>Green</th>
    <td></td>
  </tr>
</table>
</html>