1、HTML高級標簽
有序列表 ol>li
無序列表 ul>li
自定義列表 dl>dt+dd+dd
2、表格
table>tr>td+td+td
table>tr>th
<table border="1" width="200" height="200" cellspacing="0" cellpadding="0">
//border 表格的邊框
//width height 表格的寬度 高度
//cellspacing 單元格之間的空白
//cellpadding 單元邊界與單元內容之間的間距
<tr><tr> //一行
<th></th>
// th 表頭 文字加粗居中
<caption>表格的標題 </caption>
<thead></thead>
<tbody></tbody>
<tfoot></tfoot>
</table>
3、表單元素
<input type="text" value="請輸入你的文本框默認值" />
type取值:text password hidden radio checkbox submit button reset image
表單元素
<textarea cols="10" rows="10">
這里面是默認值
</textarea>
<select>
<option selected=“selected”> </option>
<option></option>
</select>
4、特殊字符
 丢胚;空格
< 小于
> 大于
5、頁面的內容
html css js