<html lang="en">
<head>
<title>Bootstrap 4 Dark Small Table</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<style>
body{
padding:15px;
}
</style>
</head>
<body>
<div class="container">
<h2>Bootstrap 4 Dark Small Table</h2>
<p>Add <code>.table</code>, <code>.table-sm</code>, and <code>.table-dark</code> class to create a dark Small table.</p>
<table class="table table-sm table-dark">
<thead>
<tr>
<th>Sr No</th>
<th>Player Name</th>
<th>Team</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Sachin Tendulkar</td>
<td>India</td>
<td>130</td>
</tr>
<tr>
<td>2</td>
<td>Chris Gayle</td>
<td>West Indies</td>
<td>154*</td>
</tr>
<tr>
<td>3</td>
<td>Virat Kohli</td>
<td>India</td>
<td>123*</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>