# HTML 文本格式化
HTML 文本格式化 HTML 文本格式化 加粗文本 斜体文本 电脑自动输出 这是 下标 和 上标 尝试一下 » HTML 格式化标签 HTML 使用标签 与 对输出的文本进行格式, 如:粗体 or 斜体 这些HTML标签被称为格式化标签(请查看底部完整标签参考手册)。 通常标签 替换加粗标签
* * *
## 实例
~~~
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
</head>
<body>
<b>加粗文本</b><br><br>
<i>斜体文本</i><br><br>
<code>电脑自动输出</code><br><br>
这是 <sub> 下标</sub> 和 <sup> 上标</sup>
</body>
</html>
~~~
[运行实例 »](https://www.php.cn/html/html-formatting.html#)
点击 "运行实例" 按钮查看在线实例
* * *
## HTML 格式化标签
HTML 使用标签 与 对输出的文本进行格式, 如:**粗体**or*斜体*
这些HTML标签被称为格式化标签(请查看底部完整标签参考手册,亦可查询[HTML编程词典](http://www.php.cn/dic/11.html))。
通常标签 <strong> 替换加粗标签 <b> 来使用, <em> 替换 <i>标签使用。然而,这些标签的含义是不同的:<b> 与<i> 定义粗体或斜体文本。<strong> 或者 <em>意味着你要呈现的文本是重要的,所以要突出显示。现今所有主要浏览器都能渲染各种效果的字体。不过,未来浏览器可能会支持更好的渲染效果。
在线实例
[文本格式化](http://www.php.cn/code/30202.html)
此例演示如何在一个 HTML 文件中对文本进行格式化
[预格式文本](http://www.php.cn/code/30203.html)
此例演示如何使用 pre 标签对空行和空格进行控制。
["计算机输出"标签](http://www.php.cn/code/30204.html)
此例演示不同的"计算机输出"标签的显示效果。
[地址](http://www.php.cn/code/30205.html)
此例演示如何在 HTML 文件中写地址。
[缩写和首字母缩写](http://www.php.cn/code/30206.html)
此例演示如何实现缩写或首字母缩写。
[文字方向](http://www.php.cn/code/30207.html)
此例演示如何改变文字的方向。
[块引用](http://www.php.cn/code/30208.html)
此例演示如何实现长短不一的引用语。
[删除字效果和插入字效果](http://www.php.cn/code/30209.html)
此例演示如何标记删除文本和插入文本。
* * *
## HTML 文本格式化标签
| 标签 | 描述 |
| :-- | :-- |
| [](http://www.php.cn/dic/html/b.html) | 定义粗体文本 |
| [](http://www.php.cn/tags/tag-em.html) | 定义着重文字 |
| [](http://www.php.cn/dic/html/i.html) | 定义斜体字 |
| [](http://www.php.cn/dic/html/small.html) | 定义小号字 |
| [](http://www.php.cn/dic/html/strong.html) | 定义加重语气 |
| [](http://www.php.cn/dic/html/sub.html) | 定义下标字 |
| [](http://www.php.cn/dic/html/sup.html) | 定义上标字 |
| [](http://www.php.cn/dic/html/ins.html) | 定义插入字 |
| [](http://www.php.cn/dic/html/del.html) | 定义删除字 |
## HTML "计算机输出" 标签
| 标签 | 描述 |
| :-- | :-- |
| [](http://www.php.cn/tags/tag-code.html) | 定义计算机代码 |
| [](http://www.php.cn/tags/tag-kbd.html) | 定义键盘码 |
| [](http://www.php.cn/tags/tag-samp.html) | 定义计算机代码样本 |
| [](http://www.php.cn/tags/tag-var.html) | 定义变量 |
| [](http://www.php.cn/dic/html/pre.html) | 定义预格式文本 |
## HTML 引文, 引用, 及标签定义
| 标签 | 描述 |
| :-- | :-- |
| [](http://www.php.cn/dic/html/abbr.html) | 定义缩写 |
| [](http://www.php.cn/dic/html/address.html) | 定义地址 |
| [](http://www.php.cn/dic/html/bdo.html) | 定义文字方向 |
| [](http://www.php.cn/dic/html/blockquote.html) | 定义长的引用 |
| [](http://www.php.cn/tags/tag-q.html) | 定义短的引用语 |
| [](http://www.php.cn/dic/html/cite.html) | 定义引用、引证 |
| [](http://www.php.cn/tags/tag-dfn.html) |
定义一个定义项目。
|