HTML and CSS Reference
In-Depth Information
1.
All tables should have an opening and a closing tag.
<table>
</table>
Table rows should be delimited by <tr> and </tr> . The first row starts like this:
2.
<table>
<tr>
</tr>
</table>
Table header cells should be written between <th> and </th> . Since the desired table has
five columns, five header cell elements are required:
3.
<table>
<tr>
<th></th><th></th><th></th><th></th><th></th>
</tr>
</table>
4.
A new row should be started for the first row of data cells.
<table>
<tr>
<th></th><th></th><th></th><th></th><th></th>
</tr>
<tr>
</tr>
</table>
Data cells should be provided by td tags. Since the desired table has five columns, five data
cell elements are required for each row.
5.
<table>
<tr>
<th></th><th></th><th></th><th></th><th></th>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td>
</tr>
</table>
Search WWH ::




Custom Search