1 / 7

Internet Programming Practicum

Lecturers : Kurniawan, S.Kom., M.M. Module 4. Internet Programming Practicum. Credits : 4 Information System Study Program. HTML Tables. Lecturers : Kurniawan, S.Kom., M.M. Tables are defined with the <table> tag.

Télécharger la présentation

Internet Programming Practicum

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. Lecturers : Kurniawan, S.Kom., M.M. Module 4 Internet Programming Practicum Credits : 4 Information System Study Program Internet Programming Practicum

  2. HTML Tables Lecturers : Kurniawan, S.Kom., M.M. Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc. Internet Programming Practicum

  3. Example: Lecturers : Kurniawan, S.Kom., M.M. <table border="1"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> Internet Programming Practicum

  4. List of Table Tag Lecturers : Kurniawan, S.Kom., M.M. List of <tr> <td> <th> Tag Attribute Tag Table Internet Programming Practicum

  5. Exercise 3 (tabel.html) Lecturers : Kurniawan, S.Kom., M.M. Internet Programming Practicum

  6. Internet Programming Practicum

  7. Internet Programming Practicum

More Related