top of page
TALLER #2
<html>
<head>
<title>Seccionar Espacios con Tablas</title>
</head>
<body>
<Table border=1 width=100% bgcolor=pink>
<Tr>
<Td colspan=3><h2>Manejo de Tablas</h2></Td></Tr>
<Tr bgcolor=green>
<Td rowspan=4>
<OL><li>las filas son con TR</li>
<li>las celdas con TD</li>
<li>Toda la tabla cpn TABLE</li>
</OL>
</Td><Td>100</Td><Td bgcolor=blue>30</Td></Tr>
<Tr>
<Td>90</Td><Td>100</Td></Tr>
<Tr>
<Td>46</Td><Td>70</Td></Tr>
<Tr>
<Td>78</Td><Td>23</Td></Tr>
</Table>
</body>
</html>

bottom of page