The i tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The i tag defines a piece of text to be displayed in italics.
The i tag is often used when you want to quote quotations, indicate a word from another language, etc. The i tag should not be used when the text can use more appropriate emphatic elements such as:
- <em> (emphasis text)
- <strong> (important text)
- <mark> (marked text)
- <cite> (the title of the text)
- <dfn> (text is a term, definition)
Using
As mentioned above, every time you need to mark a word or a piece of text, you should consider other bookmarks first to find the most reasonable way to mark it.
Example : Here, I will use the i tag to mark a quoted quote in the text:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p> <h4>Trong ví dụ này mình trích dẫn một số danh ngôn nổi tiếng:</h4> <ul> <li> <i>Người không có khuyết điểm thì ít có ưu điểm. </i> <b> - Lincoln</b> </li> <li> <i>Thành thực là phẩm chất tốt nhất.</i> <b> - Tom Wilson (Mỹ)</b> </li> <li> <i>Tòa án lương tâm không bao giờ ngơi nghỉ.</i> <b> - T. Fuller (Anh)</b> </li> </ul> </p> </body> </html>