Heim > Web-Frontend > HTML-Tutorial > Beispiel für die HTML-Textformatierung

Beispiel für die HTML-Textformatierung

WBOY
Freigeben: 2016-08-30 09:21:06
Original
1593 Leute haben es durchsucht

1. Textformatierung: Dieses Beispiel zeigt, wie Text in einer HTML-Datei formatiert wird.

<html>

<body>

<b>This text <span style="color: #0000ff;">is</span> bold</b>

<br />

<strong>This text <span style="color: #0000ff;">is</span> strong</strong>

<br />

<big>This text <span style="color: #0000ff;">is</span> big</big>

<br />

<em>This text <span style="color: #0000ff;">is</span> emphasized</em>

<br />

<i>This text <span style="color: #0000ff;">is</span> italic</i>

<br />

<small>This text <span style="color: #0000ff;">is</span> small</small>

<br /><span style="color: #000000;">

This text contains
</span><sub>subscript</sub>

<br /><span style="color: #000000;">

This text contains
</span><sup>superscript</sup>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

2. Vorformatierter Text: Dieses Beispiel zeigt, wie das Pre-Tag verwendet wird, um Leerzeilen und Leerzeichen zu steuern.

<html>

<body>

<pre class="brush:php;toolbar:false"><span style="color: #000000;">
这是
预格式文本。
它保留了      空格
和换行。
</span>

pre 标签很适合显示计算机代码:

<span style="color: #0000ff;">for</span> i = <span style="color: #800080;">1</span> to <span style="color: #800080;">10</span><span style="color: #000000;">
     print i
next i
</span>
Nach dem Login kopieren

Der Effekt ist wie folgt:

3. Beschriftung „Computer-Ausgabe“: Dieses Beispiel demonstriert die Anzeigeeffekte verschiedener Beschriftungen „Computer-Ausgabe“.

<html>

<body>

<code>Computer code</code>
<br />
<kbd>Keyboard input</kbd>
<br />
<tt>Teletype text</tt>
<br />
<samp>Sample text</samp>
<br />
<<span style="color: #0000ff;">var</span>>Computer variable</<span style="color: #0000ff;">var</span>>
<br />

<p>
<b>注释:</b>这些标签常用于显示计算机/<span style="color: #000000;">编程代码。
</span></p>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

4. Adresse: Dieses Beispiel zeigt, wie man eine Adresse in eine HTML-Datei schreibt.

<!DOCTYPE html>
<html>
<body>

<address><span style="color: #000000;">
Written by </span><a href=<span style="color: #800000;">"</span><span style="color: #800000;">mailto:webmaster@example.com</span><span style="color: #800000;">"</span>>Donald Duck</a>.<br><span style="color: #000000;"> 
Visit us at:</span><br><span style="color: #000000;">
Example.com</span><br><span style="color: #000000;">
Box </span><span style="color: #800080;">564</span>, Disneyland<br><span style="color: #000000;">
USA
</span></address>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

5. Abkürzungen und Akronyme: Dieses Beispiel zeigt, wie Abkürzungen oder Akronyme implementiert werden.

<html>

<body>

<abbr title=<span style="color: #800000;">"</span><span style="color: #800000;">etcetera</span><span style="color: #800000;">"</span>>etc.</abbr>
<br />
<acronym title=<span style="color: #800000;">"</span><span style="color: #800000;">World Wide Web</span><span style="color: #800000;">"</span>>WWW</acronym>

<p>在某些浏览器中,当您把鼠标移至缩略词语上时,title 可用于展示表达的完整版本。</p>

<p>仅对于 IE <span style="color: #800080;">5</span> 中的 acronym 元素有效。</p>

<p>对于 Netscape <span style="color: #800080;">6.2</span> 中的 abbr 和 acronym 元素都有效。</p>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

6. Textrichtung: Dieses Beispiel zeigt, wie man die Textrichtung ändert.

<html>

<body>

<p><span style="color: #000000;">
如果您的浏览器支持 bi</span>-directional <span style="color: #0000ff;">override</span><span style="color: #000000;"> (bdo),下一行会从右向左输出 (rtl);
</span></p>

<bdo dir=<span style="color: #800000;">"</span><span style="color: #800000;">rtl</span><span style="color: #800000;">"</span>><span style="color: #000000;">
Here </span><span style="color: #0000ff;">is</span><span style="color: #000000;"> some Hebrew text
</span></bdo>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

7. Blockzitat: Dieses Beispiel zeigt, wie man Zitate unterschiedlicher Länge umsetzt.

<html>

<body><span style="color: #000000;">

这是长的引用:
</span><blockquote><span style="color: #000000;">
这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。
</span></blockquote><span style="color: #000000;">

这是短的引用:
</span><q><span style="color: #000000;">
这是短的引用。
</span></q>

<p><span style="color: #000000;">
使用 blockquote 元素的话,浏览器会插入换行和外边距,而 q 元素不会有任何特殊的呈现。
</span></p>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

Achten, Untereffekte löschen und Untereffekte einfügen.

<html>

<body>

<p>一打有 <del>二十</del> <ins>十二</ins> 件。</p>

<p>大多数浏览器会改写为删除文本和下划线文本。</p>

<p>一些老式的浏览器会把删除文本和下划线文本显示为普通文本。</p>

</body>
</html>
Nach dem Login kopieren

Der Effekt ist wie folgt:

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage