Está en la página 1de 6

Manejo de Tablas en HTML

Patrick Espinoza Roa

Programación HTML I

Instituto IACC

21 de septiembre de 2020
Desarrollo

INSTRUCCIONES: Se requiere crear una página web en KompoZer que contenga la siguiente

tabla:

- Código:

<body>

<h1 align="left"><i>Analisis de ventas</i></h1>

<br>

<table border="8">

<caption align="center">Analisis de Ventas Anuales</caption> <br>

<tbody>

<tr>

<th><i>Año</i></th>

<th><i>Producto A</i></th>

<th><i>Producto B</i></th>
<th><i>Producto C</i></th>

<th><i>Producto D</i></th>

</tr>

<tr>

<th><i>N-3</i></th>

<th>-</th>

<th>-</th>

<th>-</th>

<th>-</th>

</tr>

<tr>

<th><i>N-2</i></th>

<th>3</th>

<th>5</th>

<th>8</th>

<th>4</th>

</tr>

<tr>

<th><i>N-1</i></th>

<th>4</th>

<th>4</th>

<th>7</th>

<th>3</th>

</tr>
<tr>

<th><i>N</i></th>

<th>5</th>

<th>7</th>

<th>6</th>

<th>2</th>

</tr>

</tbody>

</table>

</body>

</html>
Bibliografía

- Programación HTML I, semana 7, Tablas, IACC septiembre 2020

También podría gustarte