I have this code where it creates two tables and a div and the tables are below the div:
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div id="calendar" class="col-centered">
</div>
</div>
<table border="1">
<Legend><strong>Dias de Atendimento</strong></Legend>
<tr>
<th>Dia</th>
<th>Hora</th>
</tr>
<tr>
<td>Terça-Feira</td>
<td>14:30 às 17:30</td>
</tr>
<tr>
<td>Quinta-Feira</td>
<td>10:30 às 12:00</td>
</tr>
</table>
<table border="1">
<Legend><strong>Legenda</strong></Legend>
<tr>
<th>Cores</th>
<th>Descrição</th>
</tr>
<tr>
<td>Vermelho</td>
<td>Indisponível</td>
</tr>
<tr>
<td>Amarelo</td>
<td>Vagas (sob Consulta)</td>
</tr>
<tr>
<td>Laranja</td>
<td>Alterações</td>
</tr>
</table>
</div>
I wanted to put the tables next to the div as shown in the image with the empty square in red next to the div: