html注释:<!-- -->
html中不支持空格、回车、制表符都会被解析成一个空格
<pre></pre>标签内以上三个会被正常解析。
<font>:size属性:大小 face属性:字体 color属性:颜色
<sup></sup>上标 <sub></sub>下标
<ol type="A/a/i/1" start="2/4/10"><li></li></ol> 有序列表
<ul type="disc/square/circle"><li></li></ul> 无序列表
img alt属性:当图片无法加载时显示的提示信息。 border属性:边框。
<a>标签 做锚
先在页面某位置定义一个<a name="abc"></a>
在其它位置添加<a href="#abc">回到某位置</a>
target属性 默认在当前页面打开 或者_blank:在空白页打开
<table><tr><td>....</td>
<td>标签属性colspan="3"长度占3个td位置,rowspan="2"占多少列 align="left/center/right"对齐
<th>标签 表格名 默认居中加粗
<select multiple="multiple">select支持多选