HTML 文本 格式 化标签
通常标签 <strong> 替换加粗标签 来使用, <em> 替换 <i>标签使用。然而,这些标签的含义是不同的: 与<i> 定义粗体或斜体文本。<strong> 或者 <em>意味着你要呈现的文本是重要的,所以要突出显示。现今所有主要浏览器都能渲染各种效果的字体。不过,未来浏览器可能会支持更好的渲染效果。文本代码案列:
XML/HTML Code复制内容到剪贴板
<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>
XML/HTML Code复制内容到剪贴板
<!DOCTYPE html>
<html>
<body>
<pre>
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both spaces and
line breaks
</pre>
</body>
</html>
HTML 引文, 引用, 及标签定义
以上这篇HTML 基础 总结 推荐 (文本格式)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。
【盐城网站优化】HTML基础总结推荐(文本格式)