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

30 lines
858 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>