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>
<tr>
<th> 2016 <th>
<td> 23900 </td>
<td> 21500 </td>
<td> 1150 </td>
<td><imagen src="imag.jpg"></td>
</tr>
<tr>
<th> 2017 <th>
<td> 24600 </td>
<td> 23500 </td>
<td> 13400 </td>
</tr>
</table>
</body>
</html>

<Html>
<head>
<title> table </title>
</head>
<body>
<table border="1" bigcolor="blue">
<tr>
<th rowspan="3"> años </th>
<th colspan="6"> ventas </th>
</tr>
<tr>
<th colspan="2"> sem 1 </th>
<th colspan="2"> sem 2 </th>
<th colspan="2"> sem 3 </th>
</tr>
<tr>
<th> n </th>
<th> I </th>
<th> n </th>
<th> I </th>
<th> n </th>
<th> I </th>

Luego vendría la parte de llenar la tabla que seria como obtenemos arriba <td> contenido </td>

Luego se evaluó el tema con todo esto que fue visto en el área de informática 1er periódico

Comentarios

Entradas populares de este blog