Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 506 Bytes

File metadata and controls

34 lines (30 loc) · 506 Bytes

Tables

Table element

<table> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> </tr> </table>

Table caption

<table>
    <caption>Table Caption</caption>
    <!-- Table content -->
</table>

Table header

<table>
    <tr>
        <th>Header 1</th>
        <th>Header 2</th>
    </tr>
    <!-- Table content -->
</table>

Table body

<table>
    <tbody>
        <!-- Table content -->
    </tbody>
</table>