字體標簽 <font size="1~7" color="red|#ff0000"></font> 標題標簽<h1></h1>到<h6></h6> 水平線標簽 <hr size="1~7" color="green|#00ff00" /> 換行標簽 <br/> 特殊字元 : < 表示 < &g ...
字體標簽 <font size="1~7" color="red|#ff0000"></font>
標題標簽<h1></h1>到<h6></h6>
水平線標簽 <hr size="1~7" color="green|#00ff00" />
換行標簽 <br/>
特殊字元 :
< 表示 <
> 表示 >
表示一個空格
& 表示一個 &
" 表示一個"
® 表示一個註冊符號
© 表示一個版權符號
列表標簽:
定義列表
<dl>
<dt>
</dt>
<dd>
</dd>
</dl>
有序列表
<ol type="1|i|a">
<li></li>
</ol>
<ul type="dis"|"circle"|"square">
<li></li>
</ul>
圖像標簽
<img src="" width="" height="" alt="圖片出錯顯示但相容差" title="滑鼠懸停顯示">
超鏈接標簽
<a href="#" target="_self|_blank"> 其中#表示什麼都不打開 什麼都沒有表示打開當前目錄
<a name="top">頂部</a>
<a href="#top">返回頂部</a>
原樣輸出標簽
<pre>這裡的格式顯示時保留</pre>
表格標簽 屬性及合併單元格
<table border="2" bordercolor="red" cellspacing="1" width="" height="">
<caption>標題|說明文字</caption>
<tr>
<td colspan="3">跨3列</td>
</tr>
<tr>
<td></td><td></td><td rowspan="3">跨3行</td>
</tr>
</table>
表單標簽 範圍 輸入項
<form action="提交到一個地址,預設當前" method="get|post get攜帶數據安全低有限制大小post不攜帶安全高不限制" enctype="文件上傳用屬性">
<input type="text" />
<input type="password" />
<input type="radio" />
<input type="checkbox" checked="checked" /> 表示已選中
<input type="file" />
<select name="birth">
<option value="0" selected="selected">請選擇</option> 預設選中
<option value="1">2018</option>
</select>
<textarea cols="10" rows="5" name=""></textarea>
<input type="hidden" />
<input type="submit" value="提交" />
<input type="image" src="使用圖片做提交按鈕會好看" />
<input type="reset" value="重置了">
<input type="button" value="">
</form>
其他標簽
<b></b>加粗
<u></u>下劃線
<i></i>傾斜
<s></s>刪除線
3<sub>2</sub> 下標
3<sup>2</sup>上標
<div></div> 塊 換行
<span></span> 不換行 同行顯示彈出提示
<p></p> 段落
<meta charset="utf-8"> 頭標簽