n. (first person singular pronoun, used as the subject of the verb) I; English letter i
html i tag syntax
Function: Display italic text effect.
Note: <i> tag is similar to the content-based style tag <em>. It tells the browser to display the contained text in italic or oblique fonts. If this type of italics is not available for the browser, you can use highlighting, inverting, or underlining styles.
Note: <i> tag must be used in conjunction with the closing tag </i>.
html i tag example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <i>这是显示斜体文本效果的标签</i> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance