XML/HTML Code復制內(nèi)容到剪貼板
- <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復制內(nèi)容到剪貼板
- <html>
-
- <body>
-
- <pre>
- 這是
- 預格式文本。
- 它保留了 空格
- 和換行。
- </pre>
-
- <p>pre 標簽很適合顯示計算機代碼:</p>
-
- <pre>
- for i = 1 to 10
- print i
- next i
- </pre>
-
- </body>
- </html>
XML/HTML Code復制內(nèi)容到剪貼板
- <html>
-
- <body>
-
- <code>Computer code</code>
- <br />
- <kbd>Keyboard input</kbd>
- <br />
- <tt>Teletype text</tt>
- <br />
- <samp>Sample text</samp>
- <br />
- <var>Computer variable</var>
- <br />
-
- <p>
- <b>注釋:</b>這些標簽常用于顯示計算機/編程代碼。
- </p>
-
- </body>
- </html>
XML/HTML Code復制內(nèi)容到剪貼板
- <!DOCTYPE html>
- <html>
- <body>
-
- <address>
- Written by <a href="mailto:webmaster@example.com">Donald Duck</a>.<br>
- Visit us at:<br>
- Example.com<br>
- Box 564, Disneyland<br>
- USA
- </address>
-
- </body>
- </html>
XML/HTML Code復制內(nèi)容到剪貼板
- <html>
-
- <body>
-
- <abbr title="etcetera">etc.</abbr>
- <br />
- <acronym title="World Wide Web">WWW</acronym>
-
- <p>在某些瀏覽器中,當您把鼠標移至縮略詞語上時,title 可用于展示表達的完整版本。</p>
-
- <p>僅對于 IE 5 中的 acronym 元素有效。</p>
-
- <p>對于 Netscape 6.2 中的 abbr 和 acronym 元素都有效。</p>
-
- </body>
- </html>
XML/HTML Code復制內(nèi)容到剪貼板
- <html>
-
- <body>
-
- <p>
- 如果您的瀏覽器支持 bi-directional override (bdo),下一行會從右向左輸出 (rtl);
- </p>
-
- <bdo dir="rtl">
- Here is some Hebrew text
- </bdo>
-
- </body>
- </html>
XML/HTML Code復制內(nèi)容到剪貼板
- <html>
-
- <body>
-
- 這是長的引用:
- <blockquote>
- 這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。這是長的引用。
- </blockquote>
-
- 這是短的引用:
- <q>
- 這是短的引用。
- </q>
-
- <p>
- 使用 blockquote 元素的話,瀏覽器會插入換行和外邊距,而 q 元素不會有任何特殊的呈現(xiàn)。
- </p>
-
- </body>
- </html>
XML/HTML Code復制內(nèi)容到剪貼板
- <html>
-
- <body>
-
- <p>一打有 <del>二十</del> <ins>十二</ins> 件。</p>
-
- <p>大多數(shù)瀏覽器會改寫為刪除文本和下劃線文本。</p>
-
- <p>一些老式的瀏覽器會把刪除文本和下劃線文本顯示為普通文本。</p>
-
- </body>
- </html>