文本格式化标签
| 标签 |
描述 |
<b> |
定义粗体 |
<i> |
定义斜体 |
<small> |
定义小号字 |
<strong> |
定义粗体字 |
<sub> |
定义下标 |
<sup> |
定义上标字 |
<ins> |
定义插入字 |
<del> |
定义删除字 |
文本格式化实例
<html>
<body>
<b>This text is bold</b>
<br />
<strong>This text is strong</strong>
<br />
<big>This text is big</big>
<br />
<i>This text is italic</i>
<br />
<small>This text is small</small>
<br />
<sub>subscript</sub>
<br />
<sup>superscript</sup>
<br/>
<del>删除</del>
<br/>
<ins>插入字体</ins>
</body>
</html>
地址实例
<address>
Written by <a href="1@qq.com">Donald Duck</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>