本页列出了所有 HTML 元素 ,创建是使用 tags . 它们是按功能分组,以帮助您轻松找到脑中所想。每个元素页面的侧边栏,都有提供按字母顺序排列的所有元素清单。
HTML 元素和属性基础的更多有关信息,见 介绍 HTML 文章中关于元素的章节 .
| 元素 | 描述 |
|---|---|
<html>
|
HTML
<html>
element
represents the root (top-level element) of an HTML document, so it is also referred to as the
root element
. All other elements must be descendants of this element.
|
Metadata contains information about the page. This includes information about styles, scripts and data to help software ( 搜索引擎 , 浏览器 , etc.) use and render the page. Metadata for styles and scripts may be defined in the page or link to another file that has the information.
| 元素 | 描述 |
|---|---|
<base>
|
HTML
<base>
element
specifies the base URL to use for all
relative
URLs in a document.
|
<head>
|
HTML
<head>
element
contains machine-readable information (
metadata
) about the document, like its
title
,
脚本
,和
样式表
.
|
<link>
|
HTML External Resource Link element (
<link>
)
specifies relationships between the current document and an external resource. This element is most commonly used to link to
stylesheets
, but is also used to establish site icons (both "favicon" style icons and icons for the home screen and apps on mobile devices) among other things.
|
<meta>
|
HTML
<meta>
element
表示
metadata
that cannot be represented by other HTML meta-related elements, like
<base>
,
<link>
,
<script>
,
<style>
or
<title>
.
|
<style>
|
HTML
<style>
element
contains style information for a document, or part of a document.
|
<title>
|
HTML 标题元素
(
<title>
) defines the document's title that is shown in a
浏览器
的标题栏 (或页面选项卡)。
|
| 元素 | 描述 |
|---|---|
<body>
|
HTML
<body>
元素
represents the content of an HTML document. There can be only one
<body>
元素在文档中。
|
Content sectioning elements allow you to organize the document content into logical pieces. Use the sectioning elements to create a broad outline for your page content, including header and footer navigation, and heading elements to identify sections of content.
| 元素 | 描述 |
|---|---|
<address>
|
HTML
<address>
element
indicates that the enclosed HTML provides contact information for a person or people, or for an organization.
|
<article>
|
HTML
<article>
element
represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication).
|
<aside>
|
HTML
<aside>
element
represents a portion of a document whose content is only indirectly related to the document's main content.
|
<footer>
|
HTML
<footer>
element
represents a footer for its nearest
区间内容
or
区间根
element. A footer typically contains information about the author of the section, copyright data or links to related documents.
|
<header>
|
HTML
<header>
element
represents introductory content, typically a group of introductory or navigational aids. It may contain some heading elements but also a logo, a search form, an author name, and other elements.
|
<h1>
,
<h2>
,
<h3>
,
<h4>
,
<h5>
,
<h6>
|
HTML
<h1>
–
<h6>
元素
represent six levels of section headings.
<h1>
is the highest section level and
<h6>
is the lowest.
|
<hgroup>
|
HTML
<hgroup>
element
represents a multi-level heading for a section of a document. It groups a set of
<h1>–<h6>
元素。
|
<main>
|
HTML
<main>
element
represents the dominant content of the
<body>
of a document. The main content area consists of content that is directly related to or expands upon the central topic of a document, or the central functionality of an application.
|
<nav>
|
HTML
<nav>
element
represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes.
|
<section>
|
HTML
<section>
element
represents a standalone section — which doesn't have a more specific semantic element to represent it — contained within an HTML document.
|
使用 HTML 文本内容元素组织的内容块 (或区间) 放置在打开
<body>
和关闭
</body>
标签。很重要对于
accessibility
and
SEO
,这些元素标识内容的目的 (或结构)。
| 元素 | 描述 |
|---|---|
<blockquote>
|
HTML
<blockquote>
元素
(或
HTML 块引用元素
) 指示封闭文本是扩展引号。通常,这通过缩进视觉呈现 (见
注意事项
了解如何改变它)。引用源 URL 的给定可以使用
cite
属性,而源的文本表示的给定可以使用
<cite>
元素。
|
<dd>
|
HTML
<dd>
element
提供描述、定义、或值为之前术语 (
<dt>
) 在描述列表 (
<dl>
).
|
<div>
|
HTML 内容划分元素
(
<div>
) 是用于流式内容的一般容器。它对内容 (或布局) 不起作用,直到样式使用
CSS
.
|
<dl>
|
HTML
<dl>
element represents a description list. The element encloses a list of groups of terms (specified using the
<dt>
element) and descriptions (provided by
<dd>
elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).
|
<dt>
|
HTML
<dt>
element
specifies a term in a description or definition list, and as such must be used inside a
<dl>
元素。
|
<figcaption>
|
HTML
<figcaption>
or Figure Caption element
represents a caption or legend describing the rest of the contents of its parent
<figure>
元素。
|
<figure>
|
HTML
<figure>
(具有可选标题的图形) 元素
represents self-contained content, potentially with an optional caption, which is specified using the (
<figcaption>
) 元素。
|
<hr>
|
HTML
<hr>
element
represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section.
|
<li>
|
HTML
<li>
element
用于表示列表中的项。
|
<ol>
|
HTML
<ol>
element
represents an ordered list of items — typically rendered as a numbered list.
|
<p>
|
HTML
<p>
element
表示段落。
|
<pre>
|
HTML
<pre>
element
represents preformatted text which is to be presented exactly as written in the HTML file.
|
<ul>
|
HTML
<ul>
element
represents an unordered list of items, typically rendered as a bulleted list.
|
Use the HTML inline text semantic to define the meaning, structure, or style of a word, line, or any arbitrary piece of text.
| 元素 | 描述 |
|---|---|
<a>
|
HTML
<a>
element
(或
anchor
元素),采用
its
href
属性
, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address.
|
<abbr>
|
HTML 缩写元素
(
<abbr>
) represents an abbreviation or acronym; the optional
title
attribute can provide an expansion or description for the abbreviation.
|
<b>
|
HTML 注意力转移元素 (
<b>
)
is used to draw the reader's attention to the element's contents, which are not otherwise granted special importance.
|
<bdi>
|
HTML
Bidirectional Isolate element
(
<bdi>
) tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text.
|
<bdo>
|
HTML Bidirectional Text Override element
(
<bdo>
) overrides the current directionality of text, so that the text within is rendered in a different direction.
|
<br>
|
HTML
<br>
element
produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.
|
<cite>
|
HTML 引文元素
(
<cite>
) is used to describe a reference to a cited creative work, and must include the title of that work.
|
<code>
|
HTML
<code>
element
displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code.
|
<data>
|
HTML
<data>
element
links a given piece of content with a machine-readable translation. If the content is time- or date-related, the
<time>
element must be used.
|
<dfn>
|
HTML Definition element
(
<dfn>
) is used to indicate the term being defined within the context of a definition phrase or sentence.
|
<em>
|
HTML
<em>
element
marks text that has stress emphasis. The
<em>
element can be nested, with each level of nesting indicating a greater degree of emphasis.
|
<i>
|
HTML Idiomatic Text element (
<i>
)
represents a range of text that is set off from the normal text for some reason, such as idiomatic text, technical terms, taxonomical designations, among others.
|
<kbd>
|
HTML Keyboard Input element
(
<kbd>
) represents a span of inline text denoting textual user input from a keyboard, voice input, or any other text entry device.
|
<mark>
|
HTML 标记文本元素
(
<mark>
) represents text which is
marked
or
highlighted
for reference or notation purposes, due to the marked passage's relevance or importance in the enclosing context.
|
<q>
|
HTML
<q>
element
indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the text in quotation marks.
|
<rb>
|
HTML Ruby 基 (
<rb>
) element
is used to delimit the base text component of a
<ruby>
annotation, i.e. the text that is being annotated.
|
<rp>
|
HTML Ruby Fallback Parenthesis (
<rp>
) element
is used to provide fall-back parentheses for browsers that do not support display of ruby annotations using the
<ruby>
元素。
|
<rt>
|
HTML Ruby Text (
<rt>
) element
specifies the ruby text component of a ruby annotation, which is used to provide pronunciation, translation, or transliteration information for East Asian typography. The
<rt>
element must always be contained within a
<ruby>
元素。
|
<rtc>
|
HTML Ruby 文本容器 (
<rtc>
) element
embraces semantic annotations of characters presented in a ruby of
<rb>
elements used inside of
<ruby>
元素。
<rb>
elements can have both pronunciation (
<rt>
) and semantic (
<rtc>
) annotations.
|
<ruby>
|
HTML
<ruby>
element
represents small annotations that are rendered above, below, or next to base text, usually used for showing the pronunciation of East Asian characters. It can also be used for annotating other kinds of text, but this usage is less common.
|
<s>
|
HTML
<s>
element
renders text with a strikethrough, or a line through it. Use the
<s>
element to represent things that are no longer relevant or no longer accurate. However,
<s>
is not appropriate when indicating document edits; for that, use the
<del>
and
<ins>
elements, as appropriate.
|
<samp>
|
HTML Sample Element
(
<samp>
) is used to enclose inline text which represents sample (or quoted) output from a computer program.
|
<small>
|
HTML
<small>
element
represents side-comments and small print, like copyright and legal text, independent of its styled presentation. By default, it renders text within it one font-size smaller, such as from
small
to
x-small
.
|
<span>
|
HTML
<span>
element
is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the
class
or
id
attributes), or because they share attribute values, such as
lang
.
|
<strong>
|
HTML
Strong Importance Element
(
<strong>
) indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type.
|
<sub>
|
HTML
Subscript element
(
<sub>
) specifies inline text which should be displayed as subscript for solely typographical reasons.
|
<sup>
|
HTML Superscript element
(
<sup>
) specifies inline text which is to be displayed as superscript for solely typographical reasons.
|
<time>
|
HTML
<time>
element
represents a specific period in time.
|
<u>
|
HTML
Unarticulated Annotation element
(
<u>
) represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation.
|
<var>
|
HTML
Variable element
(
<var>
) represents the name of a variable in a mathematical expression or a programming context.
|
<wbr>
|
HTML
<wbr>
element
represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location.
|
HTML 支持各种多媒体资源,譬如:图像、音频和视频。
| 元素 | 描述 |
|---|---|
<area>
|
HTML
<area>
tag
在拥有预定义可点击区域的图像映射中定义区域。
图像映射
允许图像几何区域关联
超文本链接
.
|
<audio>
|
HTML
<audio>
element
is used to embed sound content in documents. It may contain one or more audio sources, represented using the
src
属性或
<source>
element: the browser will choose the most suitable one. It can also be the destination for streamed media, using a
MediaStream
.
|
<img>
|
HTML
<img>
element
将图像嵌入文档。
|
<map>
|
HTML
<map>
element
用于
<area>
元素以定义图像映射 (可点击的链接区域)。
|
<track>
|
HTML
<track>
element
is used as a child of the media elements,
<audio>
and
<video>
. It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles.
|
<video>
|
HTML Video element
(
<video>
) embeds a media player which supports video playback into the document. You can use
<video>
for audio content as well, but the
<audio>
element may provide a more appropriate user experience.
|
In addition to regular multimedia content, HTML can include a variety of other content, even if it's not always easy to interact with.
| 元素 | 描述 |
|---|---|
<embed>
|
HTML
<embed>
element
embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in.
|
<iframe>
|
HTML 内联框架元素 (
<iframe>
)
表示嵌套
浏览上下文
,将另一 HTML 页面嵌入当前页面。
|
<object>
|
HTML
<object>
element
represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.
|
<param>
|
HTML
<param>
element
定义参数为
<object>
元素。
|
<picture>
|
HTML
<picture>
element
包含零个或多个
<source>
元素和一个
<img>
element to offer alternative versions of an image for different display/device scenarios.
|
<source>
|
HTML
<source>
element
指定多媒体资源为
<picture>
,
<audio>
元素,或
<video>
元素。
|
In order to create dynamic content and Web applications, HTML supports the use of scripting languages, most prominently JavaScript. Certain elements support this capability.
| 元素 | 描述 |
|---|---|
<canvas>
|
使用
HTML
<canvas>
element
采用
画布脚本 API
或
WebGL API
绘制图形和动画。
|
<noscript>
|
HTML
<noscript>
element
defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.
|
<script>
|
HTML
<script>
element
is used to embed executable code or data; this is typically used to embed or refer to JavaScript code.
|
These elements let you provide indications that specific parts of the text have been altered.
| 元素 | 描述 |
|---|---|
<del>
|
HTML
<del>
element
表示已从文档删除的文本范围。
|
<ins>
|
HTML
<ins>
element
表示已添加到文档的文本范围。
|
The elements here are used to create and handle tabular data.
| 元素 | 描述 |
|---|---|
<caption>
|
HTML
<caption>
element
specifies the caption (or title) of a table.
|
<col>
|
HTML
<col>
element
defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a
<colgroup>
元素。
|
<colgroup>
|
HTML
<colgroup>
element
defines a group of columns within a table.
|
<table>
|
HTML
<table>
element
represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
|
<tbody>
|
HTML Table Body element
(
<tbody>
) encapsulates a set of table rows (
<tr>
elements), indicating that they comprise the body of the table (
<table>
).
|
<td>
|
HTML
<td>
element
defines a cell of a table that contains data. It participates in the
表格模型
.
|
<tfoot>
|
HTML
<tfoot>
element
defines a set of rows summarizing the columns of the table.
|
<th>
|
HTML
<th>
element
defines a cell as header of a group of table cells. The exact nature of this group is defined by the
scope
and
headers
属性。
|
<thead>
|
HTML
<thead>
element
defines a set of rows defining the head of the columns of the table.
|
<tr>
|
HTML
<tr>
element
defines a row of cells in a table. The row's cells can then be established using a mix of
<td>
(data cell) and
<th>
(header cell) elements.
|
HTML provides a number of elements which can be used together to create forms which the user can fill out and submit to the Web site or application. There's a great deal of further information about this available in the HTML forms guide .
| 元素 | 描述 |
|---|---|
<button>
|
HTML
<button>
element
represents a clickable button, used to submit
forms
or anywhere in a document for accessible, standard button functionality.
|
<datalist>
|
HTML
<datalist>
element
contains a set of
<option>
elements that represent the permissible or recommended options available to choose from within other controls.
|
<fieldset>
|
HTML
<fieldset>
element
is used to group several controls as well as labels (
<label>
) within a web form.
|
<form>
|
HTML
<form>
element
represents a document section containing interactive controls for submitting information.
|
<input>
|
HTML
<input>
element
is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and
用户代理
.
|
<label>
|
HTML
<label>
element
represents a caption for an item in a user interface.
|
<legend>
|
HTML
<legend>
element
represents a caption for the content of its parent
<fieldset>
.
|
<meter>
|
HTML
<meter>
element
represents either a scalar value within a known range or a fractional value.
|
<optgroup>
|
HTML
<optgroup>
element
creates a grouping of options within a
<select>
元素。
|
<option>
|
HTML
<option>
element
is used to define an item contained in a
<select>
,
<optgroup>
,或
<datalist>
element. As such,
<option>
can represent menu items in popups and other lists of items in an HTML document.
|
<output>
|
HTML Output element
(
<output>
) is a container element into which a site or app can inject the results of a calculation or the outcome of a user action.
|
<progress>
|
HTML
<progress>
element
displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
|
<select>
|
HTML
<select>
element
represents a control that provides a menu of options
|
<textarea>
|
HTML
<textarea>
element
represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.
|
HTML offers a selection of elements which help to create interactive user interface objects.
| 元素 | 描述 |
|---|---|
<details>
|
HTML Details Element (
<details>
)
creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state.
|
<dialog>
|
HTML
<dialog>
element
represents a dialog box or other interactive component, such as a dismissable alert, inspector, or subwindow.
|
<menu>
|
HTML
<menu>
element
represents a group of commands that a user can perform or activate. This includes both list menus, which might appear across the top of a screen, as well as
context menus
, such as those that might appear underneath a button after it has been clicked.
|
<summary>
|
HTML Disclosure Summary element
(
<summary>
) element specifies a summary, caption, or legend for a
<details>
element's disclosure box.
|
Web Components is an HTML-related technology which makes it possible to, essentially, create and use custom elements as if it were regular HTML. In addition, you can create custom versions of standard HTML elements.
| 元素 | 描述 |
|---|---|
<slot>
|
HTML
<slot>
element
—part of the
Web 组件
technology suite—is a placeholder inside a web component that you can fill with your own markup, which lets you create separate DOM trees and present them together.
|
<template>
|
HTML 内容模板 (
<template>
) element
is a mechanism for holding
HTML
that is not to be rendered immediately when a page is loaded but may be instantiated subsequently during runtime using JavaScript.
|
警告: These are old HTML elements which are deprecated and should not be used. You should never use them in new projects, and should replace them in old projects as soon as you can. They are listed here for informational purposes only.
| 元素 | 描述 |
|---|---|
<acronym>
|
The HTML Acronym Element (
<acronym>
) allows authors to clearly indicate a sequence of characters that compose an acronym or abbreviation for a word.
|
<applet>
|
过时
HTML 小程序元素
(
<applet>
) embeds a Java applet into the document; this element has been deprecated in favor of
<object>
.
|
<basefont>
|
过时
HTML Base Font element
(
<basefont>
) sets a default font face, size, and color for the other elements which are descended from its parent element.
|
<bgsound>
|
The Internet Explorer only
HTML Background Sound element
(
<bgsound>
) sets up a sound file to play in the background while the page is used; use
<audio>
代替。
|
<big>
|
过时
HTML Big Element
(
<big>
) renders the enclosed text at a font size one level larger than the surrounding text (
medium
becomes
large
,例如)。
|
<blink>
|
HTML Blink Element
(
<blink>
) is a non-standard element which causes the enclosed text to flash slowly.
|
<center>
|
过时
HTML Center Element
(
<center>
) 是
block-level element
that displays its block-level or inline contents centered horizontally within its containing element.
|
<command>
|
HTML Command element
(
<command>
) represents a command which the user can invoke. Commands are often used as part of a context menu or toolbar.
|
<content>
|
HTML
<content>
element
—an obsolete part of the
Web 组件
suite of technologies—was used inside of
Shadow DOM
as an
insertion point
, and wasn't meant to be used in ordinary HTML.
|
<dir>
|
过时
HTML Directory element
(
<dir>
) is used as a container for a directory of files and/or folders, potentially with styles and icons applied by the
用户代理
.
|
<element>
|
过时
HTML
<element>
element
was part of the
Web 组件
specification; it was intended to be used to define new custom DOM elements.
|
<font>
|
HTML Font Element
(
<font>
) defines the font size, color and face for its content.
|
<frame>
|
<frame>
is an HTML element which defines a particular area in which another HTML document can be displayed. A frame should be used within a
<frameset>
.
|
<frameset>
|
HTML
<frameset>
element
is used to contain
<frame>
元素。
|
<image>
|
过时
HTML Image element (
<image>
)
is an obsolete remnant of an ancient version of HTML lost in the mists of time; use the standard
<img>
element instead.
|
<isindex>
|
<isindex>
was an obsolete HTML element that put a text field in a page for querying the document.
|
<keygen>
|
HTML
<keygen>
element exists to facilitate generation of key material, and submission of the public key as part of an
HTML form
. This mechanism is designed for use with Web-based certificate management systems. It is expected that the
<keygen>
element will be used in an HTML form along with other information needed to construct a certificate request, and that the result of the process will be a signed certificate.
|
<listing>
|
HTML Listing Element
(
<listing>
) renders text between the start and end tags without interpreting the HTML in between and using a monospaced font. The HTML 2 standard recommended that lines shouldn't be broken when not greater than 132 characters.
|
<marquee>
|
HTML
<marquee>
element is used to insert a scrolling area of text. You can control what happens when the text reaches the edges of its content area using its attributes.
|
<menuitem>
|
HTML
<menuitem>
element
represents a command that a user is able to invoke through a popup menu. This includes context menus, as well as menus that might be attached to a menu button.
|
<multicol>
|
HTML Multi-Column Layout element
(
<multicol>
) was an experimental element designed to allow multi-column layouts and must not be used.
|
<nextid>
|
<nextid>
is an obsolete HTML element that served to enable the NeXT web designing tool to generate automatic NAME labels for its anchors.
|
<nobr>
|
The non-standard, obsolete HTML
<nobr>
element prevents the text it contains from automatically wrapping across multiple lines, potentially resulting in the user having to scroll horizontally to see the entire width of the text.
|
<noembed>
|
<noembed>
element is an obsolete, non-standard way to provide alternative, or "fallback", content for browsers that do not support the
<embed>
element or do not support the type of
embedded content
an author wishes to use.
|
<noframes>
|
The obsolete HTML
No Frames
or
frame fallback
element,
<noframes>
, provides content to be presented in browsers that don't support (or have disabled support for) the
<frame>
元素。
|
<plaintext>
|
HTML Plaintext Element
(
<plaintext>
) renders everything following the start tag as raw text, ignoring any following HTML.
|
<shadow>
|
HTML
<shadow>
element
—an obsolete part of the
Web 组件
technology suite—was intended to be used as a shadow DOM
insertion point
.
|
<spacer>
|
<spacer>
is an obsolete HTML element which allowed insertion of empty spaces on pages. It was devised by Netscape to accomplish the same effect as a single-pixel layout image, which was something web designers used to use to add white spaces to web pages without actually using an image. However,
<spacer>
no longer supported by any major browser and the same effects can now be achieved using simple CSS.
|
<strike>
|
HTML
<strike>
element
(或
HTML Strikethrough Element
) places a strikethrough (horizontal line) over text.
|
<tt>
|
过时
HTML Teletype Text element
(
<tt>
) creates inline text which is presented using the
user agent's
default monospace font face.
|
<xmp>
|
HTML Example Element
(
<xmp>
) renders text between the start and end tags without interpreting the HTML in between and using a monospaced font. The HTML2 specification recommended that it should be rendered wide enough to allow 80 characters per line.
|
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdi>
<bdo>
<bgsound>
<big>
<blink>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<content>
<data>
<datalist>
<dd>
<del>
<details>
<dfn>
<dialog>
<dir>
<div>
<dl>
<dt>
<element>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<h1>
<head>
<header>
<hgroup>
<hr>
<html>
<i>
<iframe>
<image>
<img>
<input>
<ins>
<isindex>
<kbd>
<keygen>
<label>
<legend>
<li>
<link>
<listing>
<main>
<map>
<mark>
<marquee>
<menu>
<menuitem>
<meta>
<meter>
<multicol>
<nav>
<nextid>
<nobr>
<noembed>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<picture>
<plaintext>
<pre>
<progress>
<q>
<rb>
<rp>
<rt>
<rtc>
<ruby>
<s>
<samp>
<script>
<section>
<select>
<shadow>
<slot>
<small>
<source>
<spacer>
<span>
<strike>
<strong>
<style>
<sub>
<summary>
<sup>
<table>
<tbody>
<td>
<template>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<track>
<tt>
<u>
<ul>
<var>
<video>
<wbr>
<xmp>
<input>
类型
<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="number">
<input type="password">
<input type="radio">
<input type="range">
<input type="reset">
<input type="search">
<input type="submit">
<input type="tel">
<input type="text">
<input type="time">
<input type="url">
<input type="week">