Documentation and examples for css tables: Google AMP Tables Library.
The tables are just your standard table element with thead, tbody, tr, th and td elements within.
# | First | Last | Handle |
---|---|---|---|
1 | AMP | CSS | Framework |
2 | AMP | CSS | Library |
<table>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>AMP</td>
<td>CSS</td>
<td>Framework</td>
</tr>
<tr>
<th scope="row">2</th>
<td>AMP</td>
<td>CSS</td>
<td>Library</td>
</tr>
</tbody>
</table>