Accessible Table Code

<table class="table-data" summary="Add summary here (this is not visible to sighted audience)">
<caption>Add caption or title of table.</caption>
<thead>
  <tr>
   <th scope="col">Column header 1</th>
   <th scope="col">Column header 2</th>
   <th scope="col">Column header 3</th>
  </tr>
</thead>
<tbody>
  <tr>
   <th scope="row">Row header 1</th>
   <td>data</td>
   <td>data</td>
  </tr>
  <tr>
   <th scope="row">Row header 2</th>
   <td>data</td>
   <td>data</td>
  </tr>
  </tbody>
</table>