djsiddz/bootstrap4-snippets

Actual HTML code for each snippet - 4/15 - Basic Table

Closed this issue · 1 comments

Ctrl+Shift+T basic table

<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
</tbody>
</table>