Presentation is loading. Please wait.

Presentation is loading. Please wait.

XHTML Tables.

Similar presentations


Presentation on theme: "XHTML Tables."— Presentation transcript:

1 XHTML Tables

2 Tables in XHTML: Allow us to display information on the page in a uniform fashion. Work well for organizing logical groups of words, images, and links. Are not to be used for layout of an entire web page, but only some specific information within the page.

3 What is a Row? Row

4 What is a Column? Column

5 An Example Table: 3 Rows 2 Columns

6 Adding a Table to a Page:
<table width="200"> </table> The value of the width attribute determines how wide the table will be in pixels. A percentage of the screen can be specified instead, but the resulting table would then look different to different viewers, depending on how wide their screens are.

7 Specifying the Border:
<table width="200" border="1"> </table> The value of the border attribute determines how thick the lines around the table cells will be, as measured in pixels. If this attribute is not specified, no lines will show in the table.

8 Adding Rows: <table width="200" border="1"> <tr> </tr> </table> The <tr> tag adds a table row. If nothing more is defined inside the <tr> tags, the row will take up the entire column.

9 Setting Cells and Columns:
<table width="200" border="1"> <tr> <td> </td> </tr> </table> The <td> ("table data") tag identifies an individual cell of a table. The available space will be evenly divided between the number of cells specified. In this example, we have created two columns in the first row.

10 Completing the Table Structure:
<table width="200" border="1"> <tr> <td> </td> </tr> </table> Here we have specified the cells for the second and third row. We now have a uniform table consisting of two columns and three rows.

11 Adding Text to the Table:
<table width="200" border="1"> <tr> <td>State </td> <td>Capital </td> </tr> <td>Arizona </td> <td>Phoenix </td> <td>Georgia </td> <td>Atlanta </td> </table> State Capital Arizona Phoenix Georgia Atlanta

12 Defining Table Headers:
<table width="200" border="1"> <tr> <th>State </th> <th>Capital </th> </tr> <td>Arizona </td> <td>Phoenix </td> <td>Georgia </td> <td>Atlanta </td> </table> State Capital Arizona Phoenix Georgia Atlanta By using <th> ("table header") tags in the first row instead of <td>, you are defining these cells as special headings in the table. The web browser will then know to treat them differently.

13 Table Syntax: State Capital Arizona Phoenix Georgia Atlanta
<table width="200" border="1"> <tr> <th>State </th> <th>Capital </th> </tr> <td>Arizona </td> <td>Phoenix </td> <td>Georgia </td> <td>Atlanta </td> </table> State Capital Arizona Phoenix Georgia Atlanta Make sure there is a closing tag for each opening tag and be careful to nest the elements properly.


Download ppt "XHTML Tables."

Similar presentations


Ads by Google