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

43 lines
1.5 KiB
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" style="background-color: red;">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="2" align="center" style="background-color: green;"></td>
<td align="center">Turno 1</td>
<td colspan="2" align="center" style="background-color: green;"></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>