Bootstrap-Tables
We can create table by just adding the Bootstrap's class .table to the <table> element.
Syntax:
<table class="table">
<thead>
<tr>
<th>Row</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>NAVEEN</td>
<td>KUMAR</td>
<td></td>
</tr>
</tbody>
</table>