呵呵,发现学到目前,这是最容易入门的东东,而且也不用什么部署,写完的东东直接用IE打开就运行了,入门很轻松
关于List:
知其所以然以便于理解和记忆:
<ol>: a Ordered(emumerated) List
<ul>: a Unordered(bulleted) List
<li>: a List Item in <ol> or <ul>
<dl>: a Definition List (consisting of terms paired with definitions).
<dt>: a Definition term in <dl>
<dd>: Definition Description of a term in <dl>
关于Table:
<table>
<caption>
<tr>: Table Row
这里有个关于 Table Cell 的概念: 一个Table Cell 实际上就是 table 中的一个格子,如下图
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
table cell 有2种 <td> (Table Data) 和 <th> (Table Header). 虽然这2种几乎可以混用,但偶觉的写程序嘛还是规矩些可读性强些。下边的这个例子个人认为蛮好滴:
<table border="1">
<caption><em>A test table with merged cells</em></caption>
<tr>
<th rowspan="2"> </th>
<th colspan="2"> Average </th>
<th rowspan="2"> Red eyes </th>
</tr>
<tr>
<th>height</th>
<th>weight</th>
</tr>
<tr>
<th>Males</th>
<td>1.9</td>
<td>0.003</td>
<td>40%</td>
</tr>
<tr>
<th>Females</th>
<td>1.7</td>
<td>0.002</td>
<td>43%</td>
</tr>
</table>