HTML 文字格式
使用文字格式標籤,你可以在網頁上建立一些文字,使其與普通文字內容的顯示方式不同。
HTML 格式標籤
HTML 中存在幾個用於格式化文字的標籤,例如 <b>
, <i>
等等。這些格式標籤可以使文字變為粗體,斜體,下/上標等。
<p><b>This text is bold</b></p>
<p><code>This is computer code</code></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p><mark>This text is marked</mark></p>
<p><strong>This text is strongly emphasized</strong></p>
<p>This is <sub>subscript</sub> and <sup>superscript</sup></p>
<p><ins>This text is inserted to the document</ins></p>
<p><del>This text is deleted from the document</del></p>
<strong>
標籤可以用 <b>
,<em>
可以用 <i>
。但是,這些標籤的含義有所不同。
注: <strong>
和 <em>
標籤是“邏輯”的標籤。當頁面內容需要強調某些單詞或短語時使用這些標籤,如果你只想突出顯示單詞的視覺效果,請使用 <b>
和 <i>
標籤。
HTML 文字格式標籤
標籤 | 描述 |
---|---|
<b> |
定義粗體文字。 |
<del> |
定義已刪除的文字。 |
<em> |
定義強調文字。 |
<i> |
定義斜體文字。 |
<ins> |
定義插入的文字。 |
<mark> |
定義標記/突出顯示的文字。 |
<small> |
定義小文字。 |
<strong> |
定義強文字。 |
<sub> |
定義下標文字。 |
<sup> |
定義上標文字。 |
HTML 引文,引文和定義標記
標籤 | 描述 |
---|---|
<abbr> |
定義縮寫。 |
<address> |
定義文件作者/所有者的聯絡資訊。 |
<bdo> |
定義文字方向。 |
<blockquote> |
定義長報價。 |
<q> |
定義一個簡短的報價。 |
<cite> |
定義引文。 |
<dfn> |
定義定義術語。 |
HTML 計算機輸出標籤
標籤 | 描述 |
---|---|
<code> |
定義計算機程式碼文字。 |
<kbd> |
定義鍵盤文字。 |
<samp> |
定義示例計算機程式碼。 |
<var> |
定義變數。 |
<pre> |
定義預格式化的文字。 |