Entradas

MARQUESINA

Imagen
 <HTML>   <head>       <title> texto en movimiento </title> </head>  <body>   <table border=5 width=100% height=500>   <tr>    <td>     <marquee width=50% height=40 align=top> esta marquesina tiene un texto en la parte de arriba de la pantalla </marquee>  </td> </tr> <tr>  <td>   <marquee width=50% height=40 align=middle> esta marquesian tiene un texto en la parte de en medio de la pantalla</marquee> </td> <td> <marquee width=50% height=40 align=bottom> esta marquesina tiene un texto en la parte de abajo de la pantalla </marquee> </td> </tr> </table> </body> </HTML>

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>