<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Boostrap Table Example</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h2>Responsive Table with Bootstrap 4</h2>
<!--
.table-responsive-sm < 576px
.table-responsive-md < 768px
.table-responsive-lg < 992px
.table-responsive-xl < 1200px
-->
<div class="table-responsive-xl">
<table class="table table-bordered text-center">
<thead>
<tr>
<th>#</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
<th>table_head</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
</tbody>
</table>
</div>
<div>
</body>
</html>