Advertisement
tutorfree

Tabelas - cabeçalho e Rodapé

Aug 15th, 2015
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta content="text/html" charset="UTF-8">
  5.         <title>Tabelas</title>
  6.     </head>
  7.     <body>
  8.         <h2>Tabelas</h2>
  9.         <p>Trabalhando com tabelas</p>
  10.         <table border="1">
  11.             <thead><!-- tag de marcação do cabeçalho da tabela -->
  12.             <tr>
  13.                 <th>Marca</th>
  14.                 <th>Modelo</th>
  15.                 <th>Ano</th>
  16.             </tr>
  17.             </thead>
  18.             <tfoot><!-- tag do rodapé da tabela -->
  19.                 <tr>
  20.                     <td colspan = "3">Última atualização : 06/2012</ td >
  21.                 </tr>
  22.             </tfoot>
  23.             <tbody>
  24.                 <tr>
  25.                     <td>Toyota</td>
  26.                     <td>Corolla</td>
  27.                     <td>2010</td>
  28.                 </tr>
  29.                 <tr>
  30.                     <td>Honda</td>
  31.                     <td>Civic</td>
  32.                     <td>2011</td>
  33.                 </tr>
  34.             </tbody>
  35.         </table><br />
  36.        
  37.         <h2>Tabela 2</h2>
  38.         <p>Tabelas e Cabeçalhos de tabela</p>
  39.         <table border="1">
  40.             <tr>
  41.                 <th colspan="2">Palmeiras</th>
  42.                 <th>Santos</th>
  43.             </tr>
  44.             <tr>
  45.                 <td>Jundiaí</td>
  46.                 <td>Portuguesa</td>
  47.                 <td rowspan="2">Corinthians</td>
  48.             </tr>
  49.             <tr>
  50.                 <td>Flamengo</td>
  51.                 <td>Atlético</td>
  52.             </tr>
  53.         </table>
  54.     </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement