| Word
| Definition
|
| Tables |
Allow you to organize information on the web page using HTML tags. |
| Row |
A horizontal line of information. |
| Column |
A vertical line of information |
| Cell |
The intersection of a row and a column. |
| Heading Cell |
displays text as bold and align centered |
| Data Cell |
displays text as normal and aligned left |
| Table Border |
The line that encloses the perimeter f the table. |
| Table Header |
The same as heading cell. |
| Table Border |
The line that encloses the perimeter f the table. |
| Table Caption |
descriptive text located above or below the table hat further describes the purpose of the table. |
| Rules Attribute |
Allows a web developer o select which intertnal borders to show in table. |
| table tag |
indicates the start and the end of a table. |
| tr tags |
indicates the start and the end of a table row. Rows consist of heading or data cells. |
| th tag |
indicates the start and the end of a table heading.(heading cell)Default bold text and aligned center. |
| td tags |
indicates the start and the end of a datacell in a table.Default normal text and aligned left. |
| Cellspacing |
This attribute sets the amount of space between cells. |
| Valign= top |
This attribute is used ib the tr tag for the row. |
| Valign |
Vertical Alignment, this can also be used in single cells such td tags. |
| Bgcolor |
This attribute is placed in th td tag to change the acvkground of the cell/s. |
| Width |
This attribute is placed within the td tag and is used to identify the width of each column. |
| Cellspacing |
This defines the number of pixiels of space between cells in a table. |
| Cellpadding |
This defines the number of pixiels of space within a cell in a table. |
| Rowspan Attribute |
This attribute sets the number of rows spanned by a cell. |
| Colspan Attribute |
This attribute sets the number of columns spanned by a cell. |