<i> tag : It is one of the element of HTML which is used in formatting HTML texts.
It is used to define a text in technical term, alternative mood or voice, a thought, etc.
index.html
Example:HTML
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p><i>This text is italic.</i></p>
</body>
</html>