文字
<p></p><!--装文字-->
<font></font><!--装文字-->
color="颜色" size="字体大小(1-7)"
<h1></h1><!--文章标题(一个页面最多只有一个h1标签)-->
<h2></h2>...<h6></h6>
<strong></strong><!--粗体-->
<i></i><!--斜体-->
<u></u><!--底线-->
<strike></strike><!--横线-->
<del></del><!--删除线-->
<em></em><!--斜体-->
<pre></pre><!--按格式输出(保留空格和另起一行)-->
热点地图
<map name=""></map>
<area shape="形状" coords="定位点" href="地址" alt=""><!--包在 <map></map>内-->
形状:Rect矩形; Circle圆形; Poly不规则图形;
定位点:x1,y1,x2,y2 (x1,y1)(x2,y2)为对角点坐标;
x,y,r (x,y)为圆心坐标,r为半径;
x1,y1,x2,y2,x3,y3,x4,y4... (x1,y1)(x2,y2)(x3,y3)(x4,y4)
列表
<ol type="样式"><li></li></ol><!--无序列表-->
样式:circle空心圆点;disc实心圆点;square空心方框;
<ol type="样式" start=""><li></li></ol><!--有序列表-->
样式:A a i l 1
<dl><dt>标题</dt><dd></dd></dl><!--自定义列表-->
<table>
width="宽" height="高" bordercolor="" bgcolor="" border="粗细" align="位置"
<tr><!--行标签开始-->
width="宽" height="高" align="水平内容位置" valign="垂直内容位置"
<td></td><!--列标签-->
</tr><!--行标签结束-->
</table>
合并单元格:
合并列:<td colspan="n"></td>
合并行:<td rowspan="n"></td>
<th></th><!--加粗-->
<caption></caption><!--标题-->
<thead></thead><!---->
<tbody></tbody><!---->
<tfoot></tfoot><!---->
网友评论