<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<table class="table">
<thead>
<tr>
<th>col1</th>
<th>col2</th>
<th>col3</th>
<th>col4</th>
</tr>
</thead>
<tbody>
<tr>
<td>abc</td>
<td>xyz</td>
<td>uvw</td>
<td>hig</td>
</tr>
<tr>
<td>abc</td>
<td>xyz</td>
<td>uvw</td>
<td>hig</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>