Entradas

Mostrando entradas de marzo, 2019
Imagen
Evolución de los dispositivos de almacenamiento Los dispositivos de almacenamiento informático han cambiado mucho en las últimas seis décadas. Por difícil que sea de creer en este mundo actual de unidades flash y de uso compartido de archivos en Internet, lo habitual era tener que utilizar pilas de tarjetas perforadas para almacenar y transmitir datos.  Tarjetas perforadas:  Este dispositivo de almacenamiento se utilizaba en la década de los 50 y podía almacenar hasta 960 b. Las perforaciones de las tarjetas representaban los ceros (0) y los espacios no perforados, los unos (1). El almacenamiento de un solo archivo MP3 de 2 minutos hubiera obligado a utilizar más de 40 000 tarjetas. Cinta magnética:  Una bobina de cinta magnética equivalía a 10.000 tarjetas perforadas. En cuanto al tamaño, podía tener una longitud de entre 2.400 y 4.800 pies. Una bobina podía almacenar alrededor de 5-10 MB. Disquetes de 5,25″:  Este sistema de almacenamiento surgió por la demanda exis
Imagen
HTML COMO CREAR UNA TABLA EN HTML   <HTML> <HEAD>  <TITLE> TABLE </TITLE>  </HEAD>  <BODY>  <TABLE BORDER="2">  <TR> <TD> CELDA 1 </TD> </TR>   <TR> <TD> CELDA 2 </TD> </TR> </TABLE>  </BODY>  </HTML>  CREACION DE  UNA TABLA AÑADIENDO  IMAGEN  Y COLOR A LA TABLA   <HTML> <HEAD>  <TITLE> TABLE </TITLE>  </HEAD>  <BODY>  <TABLE BORDER="1" BYCOLOR="BLUE">  <TR>  <TH> MARCAS </TH> SE PONE "TH" PARA QUE LOS    <TH> SEAT </TH>       TITULOS ESTEN EN NEGRITA <TH> FORD </TH>  <TD COLPAN="3">  TRES CEL </TD>  <TH>  BMW </TH>  <TH> IMAGEN </TH> </TR>   <TR>  <TR> <TD ROWSPAN="2"> CEL 1  </ TD> <TD ROWSPAN=

Tarea

Como crear una tabla HTML <html> <head> <title> table</title> </head> <body> <table border="2" <tr><td> celda 1 </td> </tr> <tr><td> celda 2 </td></tr> </table> </body> </html> Creación de una tabla añadidura de imagen y color a la tabla <html> <head> <title> table</title> </head> <body> <table border="1" bycolor="blue"> <tr> <TH> MARCAS <TH/> se pone "TH" para que los <TH> SEAT </TH> títulos estén en negrilla <td> Ford </th> <td colpan="3"> tres cel </td> <th> BMW </th> <th> imagen </th> </tr> <tr> <tr> <td rowspan="2"> cel 1</td> <td rowspan="2"> cel 2 </td> <td rowspan="2"> cel 3 </td> </tr>