HTML的列表主要有三种,一种是无序列表,一种是有序列表,还有一种是说明列表。无序列表用
HTML中的表格用
以及 | 标签。 | |||||
---|---|---|---|---|---|---|
标签定义表头, | 标签定义表格单元。更复杂的 HTML 表格也可能包括 <caption>、 |
标签定义)。字母 td 指表格数据(table data),即数据单元格的内容。数据单元格可以包含文本、图片、列表、段落、表单、水平线、表格等等。
|
Month | Savings |
---|---|
January | $100 |
February | $80 |
Sum | $180 |
<table>
<colgroup>
<col span="2" style="background-color:red">
<col style="background-color:yellow">
colgroup>
<tr>
<th>ISBNth>
<th>Titleth>
<th>Priceth>
tr>
<tr>
<td>3476896td>
<td>My first HTMLtd>
<td>$53td>
tr>
table>
ISBN | Title | Price |
---|---|---|
3476896 | My first HTML | $53 |