This article mainly talks about the introduction of HTML i tags, and the introduction of how to use HTML i tags. Finally, it is my personal summary. Let us take a look at this article together
First of all, let’s talk about what is the html i tag? Let's take a look at the introduction to the i tag:
Define a part that is different from the rest of the text, and render this part of the text as italicized text.
Tags are used to represent scientific terms, idioms in other languages, ideas, spacecraft names, etc.
Use the element when no other element with appropriate semantics can be used.
Tip: In HTML4.01, the tag renders text in italics. However, this is not necessary in HTML5, and a style sheet can be used to format the text within the element.
tag displays 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. If this type of italics is not available for the browser, you can use highlighting, inverting, or underlining styles.
Tips: The tag must be used in conjunction with the closing tag .
Note: Since i is also the abbreviation of icon, some popular frameworks such as bootstrap also often use the tag to store icons (icons), usually using CSS to write the tag中
Next let’s talk about the use of HTML i tags: The
i element represents text that is different from regular text and has a different voice or tone. , used to classify names, technical terms, idioms in foreign languages, translated prose, ship names in Western texts, etc.
If the text in the i element is in a different language than the main text, use the lang attribute to indicate it. For example:
<p>这里 <i>是PHP中文网</i>PHP中文网。</p> <p>这是 <i>一个能免费学习</i>任何编程语言的网站。</p> <p>很多人都喜欢<i>来PHP中文网</i>来学习。</p>
By default, browsers will display emphasized text in italics. The running results are as shown in the figure:
I pointed out all the changes, so it should be obvious
Definition of italics
<i>文本</i>
The text will have an italic style, which can be used to emphasize or distinguish a particular field
html Summary of i tag:
HTML The i tag can define the text style in the HTML4.01 version, but the css style added in HTML5 can cancel the text format in the i tag, so few people use the tag in HTML5 To express text emphasis, but in the HTML4.01 version, the tag is still welcome. This is one of the reasons why I say html i tag.
The article ends here (if you want to learn more, come to the PHP Chinese website, a website with many free programming courses). If you have any questions, you can ask them below.
【Editor’s Recommendation】
Does the HTML button tag have a hyperlink? Here is an example of setting a hyperlink on a button tag
How to customize the dialog background in HTML? An article teaches you how to customize the dialog!
The above is the detailed content of What is the tag html i? Summary of how to use html i tags. For more information, please follow other related articles on the PHP Chinese website!