HTML i tag

Alternate Voice or different quality of text. Italic text is used to display the text as in italicized. Italic text uses <i> tag.

Any text in between <i>..</i> displays as in italicized. <i> element is nested element. End tag is required for <i> tag.

Syntax -
<i>.. text here.. </i>
Example -
<!DOCTYPE html>
<html>
	<head>
		<title>Italic text example.. </title>
	</head>
	<body>
		<p>This is <i> Italic style applied</i> text</p>
	</body>
</html>
Output -

This is Italic style applied text