English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <i> Tag

Das HTML <i>-Tag gibt dem Text nur einen kursiven Aussehen, bietet jedoch keine Semantik für den Text. Dieses Tag wird auch als <i>-Element bezeichnet.

Hinweis: Das HTML <i>-Tag sollte nicht mit dem <em>-Tag verwechselt werden, das Tag kennzeichnet betonten Text.

Online-Beispiel

!doctype html
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 i-Tag-Nutzung (Basis-Tutorial-Web oldtoolbag.com)</title>
</head>
<body>
<h1>Überschrift 1</h1>
<p>Wir möchten <i>diesen Text</i> kursiv formatieren</i>.</p>
</body>
</html>
Testen Sie, ob ‹/›

Browserkompatibilität

IEFirefoxOperaChromeSafari

All mainstream browsers support the <i> tag.

Definition and Usage of Tags

<i> Defines a part that is different from the rest of the text and presents this part of the text in italic.

The <i> tag is used to represent technical terms, idioms and proverbs of other languages, ideas, names of spacecraft, etc.

The <i> tag is used for italic text, but does not emphasize the text like the <em> tag.

In most cases, it is recommended to use the <em> tag instead of the <i> tag.

When there is no other appropriate semantic element that can be used, please use the <i> element. Other semantic elements are as follows:

HTML 4.01 and HTML5Differences between

In HTML 4.01 In, the <i> tag presents italic text. However, in HTML5 It is not necessary to do this in, you can use style sheets to format the text in the <i> element.

Global Attributes

Support for <i> Tag Global Attributes of HTML.

Event Attributes

Support for <i> Tag HTML Event Attributes.