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

40 lines
1.3 KiB
HTML
Raw 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">Horario</td>
</tr>
<tr>
<td width="200" height="100" align="center">Mañana</td>
<td width="200" height="100" align="center">Mañana</td>
<td width="200" height="100" align="center">Mañana</td>
<td width="200" height="100" align="center">Mañana</td>
<td width="200" height="100" align="center">Mañana</td>
</tr>
<tr>
<td colspan="5" align="center">Turno 1</td>
</tr>
<tr>
<td width="200" height="100" align="center">Tarde</td>
<td width="200" height="100" align="center">Tarde</td>
<td width="200" height="100" align="center">Tarde</td>
<td width="200" height="100" align="center">Tarde</td>
<td width="200" height="100" align="center">Tarde</td>
</tr>
<tr>
<td colspan="5" align="center">Turno 2</td>
</tr>­
</tbody>
</table>
</body>
</html>