IFCD0210/Practicas/Practicas HTML/Practica 7/Plantilla tablas.html
2023-11-24 13:52:12 +01:00

58 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Ejemplo Tablas Html</title>
</head>
<body style="font-size: 30px;">
<table align="center" border="2">
<caption>Ejemplo de tabla</caption>
<thead>
<tr>
<th>País</th>
<th>Capital</th>
<th>Moneda</th>
<th>Poblacion</th>
</tr>
</thead>
<tbody>
<tr>
<td>España</td>
<td>Madrid</td>
<td>Euro</td>
<td>50M</td>
</tr>
<tr>
<td>Estados Unidos Mexicanos</td>
<td>Ciudad de México</td>
<td>Peso</td>
<td>80M</td>
</tr>
<tr>
<td>República Argentina</td>
<td>Buenos Aires</td>
<td>Peso</td>
<td>30M</td>
</tr>
<tr>
<td>Francia</td>
<td>Paris</td>
<td>Euro</td>
<td>60M</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>País</th>
<th>Capital</th>
<th>Moneda</th>
<th>Poblacion</th>
</tr>
</tfoot>
</table>
</body>
</html>