Tag Pair | Tag's Name | Usual Attributes (in addition to class, id, style, title) |
<table> </table> | Table |
|
<caption></caption> | Caption--OPTIONAL | --displays centered over table |
<tr> </tr> | Row |
|
<th> </th> | Cell Header--OPTIONAL (usually displays in boldface type) [contained between <tr> </tr>] |
|
<td> </td> | Data cell [contained between <tr> </tr>] |
|
<table border="1px"> <caption>Table Caption</caption> <tr> <th>1st Header</th> <th>2nd Header</th> <th>3rd Header</th> </tr> <tr> <td>1st row, 1st cell</td> <td>1st row, 2nd cell</td> <td>1st row, 3rd cell</td> </tr> <tr> <td>2nd row, 1st cell</td> <td>2nd row, 2nd cell</td> <td>2nd row, 3rd cell</td> </tr> </table> |
|
<table border="1px"> <caption>Table Caption</caption> <tr> <th colspan="2">1st-2nd columns</th> <th>3rd Column</th> </tr> <tr> <td>1st row, 1st cell</td> <td rowspan="2">1st row, 2nd cell (2 rows tall)</td> <td>1st row, 3rd cell</td> </tr> <tr> <td>2nd row, 1st cell</td> <td>2nd row, 2nd cell</td> </tr> </table> |
|
Unordered Lists | |
---|---|
<ul> <li>An unordered list item</li> <li>Another unordered list item</li> <li>Yet another unordered list item</li> </ul> |
|
Ordered Lists | |
---|---|
<ol> <li>First ordered list item</li> <li>Second ordered list item</li> <li>Third ordered list item</li> </ol> |
|
Definition Lists | |
---|---|
<dl> <dt>Definition term</dt> <dd>Definition description</dd> <dt>Another definition term</dt> <dd>Its definition description</dd> </dl> |
|