Buenos días compañeros, hoy vamos a realizar una tabla, mediante html, donde aplicaremos los conocimientos que hemos adquirido en las dos horas anteriores.
Un ejemplo de tabla es:
<html>
<head>
tabla
básica
</head>
<body>
<table
border="2">
<tr
align="center">
<th>Nombre</th>
<th>Apellidos</th>
<th>Dirección</th>
<th>Teléfono</th>
<th>Localidad</th>
<th>Correo</th>
</tr>
<tr
align="center">
<td>Alicia</td>
<td>Gutiérrez</td>
<td>C/
Osario</td>
<td>957253025</td>
<td>Córdoba</td>
<td>ali@gmail.com</td>
</tr>
<tr align="center">
<td>Carlos</td>
<td>López</td>
<td>C/
Espiel</td>
<td>663258741</td>
<td>Córdoba</td>
<td>car@gmail.com</td>
</tr>
<tr
align="center">
<td>Carla</td>
<td>Garrido</td>
<td>C/
Sol</td>
<td>687454847</td>
<td>Córdoba</td>
<td>carli@gmail.com</td>
</table>
</body>
No hay comentarios:
Publicar un comentario