一,文本格式化:此例演示如何在一个 HTML 文件中对文本进行格式化。
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>
效果如下: