1 / 7

La mia prima tabella

La mia prima tabella. di Pamela Peretti. Obiettivi dell’esercitazione. Fare pratica con le tabelle. I file da scaricare. Andate all’indirizzo: http://www.sci.unich.it/~bista/didattica/ tecnologie-web/esercizi/prima_tabella/ I file da scaricare sono: il testo dell’esercizio le slide.

allene
Télécharger la présentation

La mia prima tabella

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. La mia prima tabella di Pamela Peretti

  2. Obiettivi dell’esercitazione • Fare pratica con le tabelle

  3. I file da scaricare • Andate all’indirizzo: • http://www.sci.unich.it/~bista/didattica/tecnologie-web/esercizi/prima_tabella/ I file da scaricare sono: • il testo dell’esercizio • le slide

  4. Come è fatta la tabella? <table border=“border”> <caption> Alberi </caption> … </table>

  5. Come è fatta la tabella? 1 2 3 4 5 1 2 3 4 5

  6. <table border=“border”> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> Codice • Vanno inserite: • 5 righe: <tr> </tr> • 5 celle: <td> </td>

  7. L’intestazione <table border = "border"> <caption> Alberi </caption> <tr> <th> </th> <th> Pino </th> <th> Acero </th> <th> Quercia </th> <th> Abete </th> </tr> <tr> <th> Altezza media (metri) </th> <td> 16 </td> <td> 15 </td> <td> 15 </td> <td> 19 </td> </tr> … • Per le intestazioni • <th> </th>

More Related