This commit is contained in:
2023-11-24 13:52:12 +01:00
parent ed3b23c5ef
commit fe64a50461
8 changed files with 270 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<!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">
<tbody>
<tr>
<td colspan="5" align="center">Dias de la semana</td>
</tr>
<tr>
<td width="200" height="100" align="center">Lunes</td>
<td width="200" height="100" align="center">Martes</td>
<td width="200" height="100" align="center">Miercoles</td>
<td width="200" height="100" align="center">Jueves</td>
<td width="200" height="100" align="center">Viernes</td>
</tr>
<tr>
<td colspan="5" align="center">Ejemplo tabla 7b</td>
</tr>­
</tbody>
</table>
</body>
</html>