Home >Web Front-end >HTML Tutorial >What are the uncommon tags in html?
htmlUncommonly used tags include: pre, figure, figcaption, em, strong, del, ins, sub, sup, ruby, bdo, vedio, audio, track, optgroup, output, progress, meter, etc. .
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
HTML <pre class="brush:php;toolbar:false"></pre>
Element represents predefined formatted text. The text in this element is usually displayed in a fixed-width font according to the format in the original file, and whitespace characters (such as spaces and line breaks) in the text will be displayed.
For example:
<pre class="brush:php;toolbar:false"> < Hello World > 我 就是 想 --------------------------- 乱 七 \ ^__^ 八 遭 \ (oo)\_______ (__)\ )\/\ 的 定位 写 ||----w | || || 出来 ~
Rendering:
Rendering:
##3. em tag and strong tag) marks the content that users need to focus on reading, <em> elements can be nested. The deeper the nesting level, the more important the content it contains needs to be read. It is generally displayed as <code>"
Italic font ". The Strong element (
) indicates that the text is very important and is generally displayed in bold
.
tag indicates that something has been deleted from the document## The text content of #. For example, you can use this tag when you need to display modification records or source code differences.
<p><del>这段文本已被删除。 </del>, 请浏览其它部分</p>Rendering:
HTML
<ins>这一段文本是新插入至文档的。</ins>
Rendering:
##5. Sub tag and sup tag
<p>水的化学公式: H<sub>2</sub>O</p>
Rendering:
HTML
element defines a text area, out of For typographical reasons, it should be displayed lower and smaller than the main text.
<p>2 + 3<sup>2</sup>= 11</p>
Rendering:
6, ruby tag
<ruby> 曲 <rp>(</rp><rt>qu</rt><rp>)</rp> 小 <rp>(</rp><rt>xiao</rt><rp>)</rp> 强 <rp>(</rp><rt>qiang</rt><rp>)</rp> </ruby>
Rendering:
7, bdo tag
element (
HTML Bidirectional Overlay Element) is used to override the orientation of the current text, which causes the characters to be arranged in a given direction. <pre class="brush:html;toolbar:false;"><p>这段文本是从左到右的</p>
<p><bdo dir="rtl">这段文本是从右到左的</bdo></p></pre>
Rendering:
When you use
css to write a large number of styles, is there any I thought about it, there is a tag that can replace a large number of style attributes.
8, vedio, audio and track
The above is the detailed content of What are the uncommon tags in html?. For more information, please follow other related articles on the PHP Chinese website!