Home > Article > Web Front-end > How to use html i tag
html The i tag is used to display italic text effect. The tag is similar to the content-based style tag . It tells the browser to display the contained text in italic or oblique fonts.
#html How to use i tag?
Function: Display the italic text effect.
Note: The tag is similar to the content-based style tag . 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:
tag must be used in conjunction with the closing tag .
html i tag usage example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <i>这是显示斜体文本效果的标签</i> </body> </html>
Effect:
The above is the detailed content of How to use html i tag. For more information, please follow other related articles on the PHP Chinese website!