Skip to content

Instantly share code, notes, and snippets.

@ambethia
Created October 24, 2018 19:04

Revisions

  1. ambethia created this gist Oct 24, 2018.
    21 changes: 21 additions & 0 deletions table.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    <table>
    <thead>
    <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
    </tr>
    <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
    </tr>
    </tbody>
    </table>