可使用的 HTML 標籤 : <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
本站允許含有 HTML 標籤的內文. 雖然要學懂全部的 HTML 是令人頭疼的事, 不過要學些基本的 HTML 標籤亦非難事. 能在本站使用的標籤詳如下表 :
對於 HTML 若想進一步的瞭解請參考 W3C 的HTML 規範 或由搜索引擎找尋相關解說.
| 標籤說明 | 您輸入 | 您得到 |
|---|---|---|
| 錨點(anchor),用來製作通往其他頁面的連結。 | <a href="http://ipaz.net">www.ipaz.net</a> | www.ipaz.net |
| 強調 | <em>強調</em> | 強調 |
| 粗體 | <strong>粗體</strong> | 粗體 |
| 引用 | <cite>引用</cite> | 引用 |
| 標示文字,用來顯示程式的原始碼。 | <code>編碼</code> | 編碼 |
| 無序列表——使用 <li> 開始每個項目 | <ul> <li>第一個項目</li> <li>第二個項目</li> </ul> |
|
| 順序列表- 使用 <li> 來開始每個項目 | <ol> <li>第一個項目</li> <li>第二個項目</li> </ol> |
|
| Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description. | <dl> <dt>第一個詞彙</dt> <dd>第一個定義</dd> <dt>第二個詞彙</dt> <dd>第二個定義</dd> </dl> |
|
Most unusual characters can be directly entered without any problems.
If you do encounter problems, try using HTML character entities. A common example looks like & for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:
| 字元說明 | 您輸入 | 您得到 |
|---|---|---|
| 和 | & | & |
| 大於 | > | > |
| 小於 | < | < |
| 引號 | " | " |