- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML Tag
The <i> tag in HTML is used to set a part of text as italic. The usage of <i> tag should only be considered if you do not have the following semantic elements − <em>,<strong>, <mark>, etc.
Let us now see an example to implement the <i> tag −
Example
<!DOCTYPE html> <html> <head> <title>HTML i tag</title> </head> <body> <h1> Products </h1> <p>The products includes Clothing, Accessories and Furniture to be delivered by <i>FDX</i> couriers.</p> </body> </html>
Output
In the above example, we have used a <p> tag to add content −
<p>The products includes Clothing, Accessories and Furniture to be delivered by <i>FDX</i> couriers.</p>
We have set the <i> tag above −
<i>FDX</i>
- Related Articles
- HTML tag

Advertisements