ホームページ >ウェブフロントエンド >htmlチュートリアル >HTML の基本的な推奨事項の概要 (テキスト形式)
HTML テキスト書式設定タグ
タグ | 説明 |
a4b561c25d9afb9ac8dc4d70affff419 | 太字テキストを定義 |
907fae80ddef53131f3292ee4f81644b | 強調表示されたテキストとしてレンダリング |
5a8028ccc7a7e27417bff9f05adf5932 | 斜体のテキストを定義 |
d015d241ae6d34c34210679b5204fe85 | 小さいテキストを定義 |
8e99a69fbe029cd4e2b854e244eab143 | 重要なテキストを定義 |
b96cac025db4031319c29e1eb68f19d6 | 下付き文字を定義 |
2cdea26b4c3988e37d674b56660962a7 | 上付き単語を定義 |
426be984ffbbb815d7d88e3543a85d91 | 挿入単語を定義 |
823db3943044a0a9a620ada8d4b1d965 | 削除単語を定義 |
通常のタグ デフォルト テキスト e03b848252eb9375d56be284e690e873 この例は、pre タグを使用して空の行とスペースを制御する方法を示しています <html>
<body>
<b>This text is bold</b>
<br />
<strong>This text is strong</strong>
<br />
<big>This text is big</big>
<br />
<em>This text is emphasized</em>
<br />
<i>This text is italic</i>
<br />
<small>This text is small</small>
<br />
This text contains
<sub>subscript</sub>
<br />
This text contains
<sup>superscript</sup>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<pre class="brush:php;toolbar:false">
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both spaces and
line breaks