i

I. Description

The HTML i element is used to encapsulate text which is meant to be rendered in a different manner from the surrounding text, generally this means rendering the text in italics.

The i element is generally used to encapsulate names, or terms which the reader should take note of.

II. Examples

<!DOCTYPE html>
<html>
    <head>
        <title>Example Page</title>
    </head>
    <body>
        <p>
            The aquatic animal <i>Delphinus Truncatus</i>, more commonly
            known as the Bottlenose dolphin is found in all non-polar
            oceans.
        </p>
    </body>
</html>