I have encountered an issue while trying to construct a website using bootstrap. The problem lies in the layout of two tables that appear stacked on top of each other instead of being positioned next to each other. Despite my attempts at various solutions, I have been unable to resolve this issue.
Below is the snippet of my current code;
<div class="container-fluid">
<div class="col-md-5">
<h5>ANIMALS</h5>
<hr>
<div class="card card-body">
<a class="btn btn-primary btn-sm btn-block" href="">Add New Animal</a>
<table class="table table-sm">
<tr>
<th>Type</th>
<th>Name</th>
<th>Edit</th>
<th>Delete</th>
<th>Details</th>
</tr>
<td></td>
<td></td>
<td><a class="btn btn-outline-info btn-sm btn-block" href="">Edit</a></td>
<td><a class="btn btn-outline-danger btn-sm btn-block" href="">Delete</a></td>
<td><a class="btn btn-outline-success btn-sm btn-block" href="">Print</a></td>
</table>
</div>
<br>
</div>
<div class="col-md-5">
<h5>VISITS</h5>
<hr>
<div class="card card-body">
<a class="btn btn-primary btn-sm btn-block" href="">Schedule New Visit</a>
<table class="table table-sm">
<tr>
<th>Animal</th>
<th>Drop Off</th>
<th>Pick Up</th>
<th>Edit</th>
<th>Delete</th>
<th>Confirmation</th>
</tr>
<td></td>
<td></td>
<td></td>
<td><a class="btn btn-outline-info btn-sm btn-block" href="">Edit</a></td>
<td><a class="btn btn-outline-danger btn-sm btn-block" href="">Delete</a></td>
<td><a class="btn btn-outline-success btn-sm btn-block" href="">Print</a></td>
</table>
</div>
</div>
</div>
Your help is much appreciated.