
- HTML Tutorial
- HTML - Home
- HTML - Roadmap
- HTML - Introduction
- HTML - History & Evolution
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Frames
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Code Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Table Headers & Captions
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB & RGBA Colors
- HTML - HEX Colors
- HTML - HSL & HSLA Colors
- HTML - HSL Color Picker
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - Document Object Model (DOM)
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Character Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - <i> Tag
The HTML <i> tag is used to display content in italic style, typically for important words in different languages or technical terms. When writing content within a paragraph element, we can use the <i> tag to highlight the important words or terms in different languages..
Syntax
Following is the syntax of <i> tag −
<i> content </i>
Attributes
The HTML <i> tag supports both Global and Event attributes.
Example: Defining Italic Element
In this following example, lets explore how the <i> tag works in an HTML document. Below, we will see different examples of <i> elements, each illustrating the use cases of the HTML <i> tag.
<!DOCTYPE html> <html> <body> <h2> <i>This one is italic text</i> </h2> <p> I looked at it and thought <i>This can't be real! </i> </p> <p> The term <i>bandwidth</i> describes the measure of how much information can pass through a data connection in a given amount of time. </p> </body> </html>
Example: Styling Italic Element
Considering the following example, where we create an HTML document using the <i> tag to create italic text and apply style properties to make it more stylish.
<!DOCTYPE html> <html> <head> <style> i { color: red; } </style> </head> <body> <h2> <i>This one is italic text</i> </h2> <p> I looked at it and thought <i>This can't be real! </i> </p> <p> The term <i>bandwidth</i> describes the measure of how much information can pass through a data connection in a given amount of time. </p> </body> </html>
Example: Italic Language Indicator
Let's consider another scenario, where we use the <i> tag in text to indicate a different language. This HTML code styles italic text in red and uses the <i> tag to highlight a Latin phrase within a paragraph.
<!DOCTYPE html> <html> <head> <style> i { color: red; } </style> </head> <body> <p> The Latin phrase <i lang="la">Veni, vidi, vici</i> is often mentioned in music, art, and literature. </p> </body> </html>
HTML <i> Tag Usage
Use the <i> tag on any text when there is no more appropriate semantic element. Such as <em>, <strong>, <mark>, <cite>, and <dfn> tags.
Supported Browsers
Tag | ![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|---|
i | Yes | Yes | Yes | Yes | Yes |