Insertar una tabla en una página web(ejerecicio)

<!DOCTYPE html>
<html lang="es">
<header>
<title>"CREANDO TABLAS" </title></header>
<body> Ejercicio Propuesto
<table border="4" cellspacing="3">
  <thead>
   <th>DNI</th>
   <th>NOMBRE</th>
   <th>FE_NAC</th>
   <th>HOBBIE PREFERIDO</th>
 </thead>
 <tbody>
   <tr><td>75976795</td><td>William Ubillus</td><td>23/11/2001</td><td>Cantar</td></tr>
   <tr><td>765432016</td><td>Vanessa Chahua</td><td>03/11/2002</td><td>Escuchar Música</td></tr>
   <tr><td>71656410</td><td>Nicole Rojas</td><td>06/11/2002</td><td>Bailar</td></tr>
   <tr><td>001214507</td><td>Juan Díaz</td><td>10/06/2002</td><td>Jugar Play</td></tr>
 </tbody>
</table>
</body>
</hmtl>

No hay comentarios:

Publicar un comentario