Entradas

Mostrando entradas de agosto, 2024

TABLAS HTML

Imagen
<HTML>   <head>       <title> tablas </title>  </head>  <body> <table border= 3 widht= 75% height=300> <TR> <TD> fila 1, columna 1 </TD> <TD> fila 1, columna 2 </TD> </TR> <TD> fila 2, columna 1 </TD> <TD> fila 2, columna 2 </TD> </TR> </table> </table> </body> </HTML>

nota tablas en HTML

Imagen
<HTML>   <head>       <title> nota final de tablas </title>  </head>  <body> <table border= 4 widht= 80% height=500> <TR> <TD>  <h1> no hay orden </h1> <UL> <Li> teclado </Li> <Li> speaker </Li> <Li> monitor </Li> <UL> <Li> tarjeta de video </Li> </UL> </UL> </TD> </TR> <TR> <TD> <h1> si hay orden </h1> <OL> <Li> la industrial </Li> <Li> la normal </Li> <Li> santa barbara </Li> <OL> <Li> 9-2 </Li> </OL> </OL> </TD> <TD> <h1> me quedo muy bien el tema de tablas y mi nota 5.0  </h1> </TD> </TR> </table> </body> </HTML>