CLASE 2 :Como insertar tabulacion en HTML5

Como insertar tabulacion en HTML5

<!DOCTYPE html>
<html lang="es">
<header>
<title>"Ejercicio Propuesto"</title></header>
<body>EJEMPLO DE PAGINA
</body></html>
<table border="6" cellspacing="9">
  <thead>
    <th>N°</th>
    <th>PAIS</th>
    <th></th>
 </thead>
 <tbody>
   <tr><td>01.</td><td>1</td><td>Paris</td></tr>
   <tr><td>02.</td><td>2</td><td>Lima</td></tr>
   <tr><td>03.</td><td>3</td><td>La Paz</td></tr>
   <tr><td>04.</td><td>4</td>
   <td>5</td></tr>
 </tbody>
</table>
</body>
</html>

Resultado de imagen para TABLAS EN UNA PAGINA WEB CON BLOC DE NOTAS


Comentarios