You are on page 1of 1

Html

<table>
<tr>
<th>Nombre</th>
<th>Apellido</th>
<th>ciudad</th>
</tr>
<tr>
<td>Deymel</td>
<td>Peñaloza</td>
<td>Venezuela</td>
</tr>
<tr>
<td>Andrea</td>
<td>Fuentes</td>
<td>Colombia</td>
</tr>
<tr>
<td>Lina</td>
<td>Osorio</td>
<td>Colombia</td>
</tr>
<tr>
<td>Walkis</td>
<td>Melendez</td>
<td>Nicaragua</td>
</tr>
<tr>
<td>Sofia</td>
<td>Orrego</td>
<td>Colombia</td>
</tr>
<tr>
<td>Dayanis</td>
<td>Santiago</td>
<td>Brasil</td>
</tr>

Css

table{
caption-side: bottom;
margin-left: initial;
margin-right: auto;
border-collapse: collapse;
}
td,th{
border: 2px solid black;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
}

You might also like