Etiquetas

miércoles, 2 de noviembre de 2016

Actividad Tablas 1

<html>
<head>
<title>Ejemplo uso de tablas</title>
<link href="tabla1.css"rel="stylesheet" type="text/css"/>
</head>
<body>
<table width="80%" border="1" align="center">
<caption>Tabla de Prueba</caption>
<tr>
<th>Jefe departamento</th>
<th>Jefe sección</th>
<th>Empleado</th>
<th>Edad empleado</th>
</tr>
<tr>
<td rowspan="2">Juan Alberto</td>
<td>Martín Lopez</td>
<td>Maite Suarez</td>
<td>55</td>
</tr>
<tr>
<td>Luis morales</td>
<td>Mateo carralde</td>
<td>33</td>
</tr>
<tr>
<td>Diana Rodriguez</td>
<td>Carlos Hernandez</td>
<td>Alberto Fernández</td>
<td>62</td>
</tr>
<tr>
<td colspan="2">Luis Perez</td>
<td>Diego Gutierrez</td>
<td>44</td>
</tr>
</table>
</html>

CSS
th
{
color:#00FFFF;
background-color:#663399;
}
td
{
background-color:#FFFF00;
color:#FF0000
}
body
{
text-aling:center;
}

No hay comentarios:

Publicar un comentario