HTML <i> Tag
The <i> tag defines a part of text in an alternate voice or mood. The content of the <i> tag is usually displayed in italic.The <i> tag can be used to indicate a technical term, a phrase from another language, a thought, or a ship name, etc.
Use the <i> element only when there is not a more appropriate semantic element, such as:
Example
<!DOCTYPE html> <html> <body> <p><i>javameant highlited</i></p> </body> </html>