HTML 元素

本頁列出了所有 HTML 元素(Element),他們可以透過標籤(tags)建立。這些元素會以功能來分組,讓你更容易尋找。在本頁及每一個元素的頁面的側邊欄都提供了以英文字母排序的所有元素清單。

備註: 更多關於基本 HTML 元素及屬性(attribute)可參考HTML 介紹一文中的元素小節 (en-US)

主要根元素

Element Description
<html> (en-US) 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)

Metadata 是一些外部資料,不會被使用者看到。Metadata 記錄了頁面的訊息給其他軟體利用,像是瀏覽器會讀取 metadata 去決定這個頁面應該要使用哪種編碼顯示以避免亂碼。另外,有時候一個網頁的原始碼會被分散的檔案中,所以一個網頁的 Metameta 可以被定義在別份檔案中。

Element Description
<base> (en-US) Specifies the base URL to use for all relative URLs in a document. There can be only one such element in a document.
<head> (en-US) Contains machine-readable information (metadata) about the document, like its title (en-US), scripts, and style sheets (en-US).
<link> (en-US) Specifies relationships between the current document and an external resource. This element is most commonly used to link to CSS, 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> (en-US) Represents metadata (en-US) that cannot be represented by other HTML meta-related elements, like <base> (en-US), <link> (en-US), <script>, <style> (en-US) and <title> (en-US).
<style> (en-US) Contains style information for a document, or part of a document. It contains CSS, which is applied to the contents of the document containing this element.
<title> (en-US) Defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text; tags within the element are ignored.

Sectioning root

Element Description
<body> (en-US) represents the content of an HTML document. There can be only one such element in a document.

Content sectioning

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.

Element Description
<address> (en-US) Indicates that the enclosed HTML provides contact information for a person or people, or for an organization.
<article> (en-US) 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). Examples include: a forum post, a magazine or newspaper article, or a blog entry, a product card, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.
<aside> (en-US) Represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.
<footer> (en-US) Represents a footer for its nearest ancestor sectioning content or sectioning root (en-US) element. A <footer> typically contains information about the author of the section, copyright data or links to related documents.
<header> (en-US) 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> (en-US), <h2> (en-US), <h3> (en-US), <h4> (en-US), <h5> (en-US), <h6> (en-US) Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.
<main> (en-US) 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> 代表一個網頁中提供導航欄連結的區域,不管是當前網頁或者其他網頁,還是這個連結最終抵達的只是當前網頁的某個區塊,或者會抵達其他網頁,常見的導航欄範例有菜單、內容的表單,以及頁面本身。
<section> (en-US) Represents a generic standalone section of a document, which doesn't have a more specific semantic element to represent it. Sections should always have a heading, with very few exceptions.

文字內容

使用 HTML 文字內容元素,來組織放在 <body> (en-US)</body> 之間的區塊或章節內容。這對 AccessibilitySEO 至關重要。這些元素確立了內容的目的或結構。

Element Description
<blockquote> 定義一段文字屬於引用。通常,這元素會透過縮排來呈現(要知道如何改變,請參考備註)。引言的 URL 來源可透過 cite 屬性賦予,而來源的文本形式可以使用 <cite> (en-US) 元素。
<dd> (en-US) Provides the description, definition, or value for the preceding term (<dt> (en-US)) in a description list (<dl> (en-US)).
<div> 本質上不特別代表任何東西的通用内容流容器。它可以成為樣式化用途(使用 classid 屬性)、或是共享如 lang 同一個屬性的元素集合。它應該在沒有其他適合的語義元素(例如<article> (en-US)<nav> )可用時才用。
<dl> (en-US) Represents a description list. The element encloses a list of groups of terms (specified using the <dt> (en-US) element) and descriptions (provided by <dd> (en-US) elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).
<dt> (en-US) Specifies a term in a description or definition list, and as such must be used inside a <dl> (en-US) element. It is usually followed by a <dd> (en-US) element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next <dd> (en-US) element.
<figcaption> (en-US) Represents a caption or legend describing the rest of the contents of its parent <figure> (en-US) element.
<figure> (en-US) Represents self-contained content, potentially with an optional caption, which is specified using the <figcaption> (en-US) element. The figure, its caption, and its contents are referenced as a single unit.
<hr> 代表在段落層級的焦點轉換(如故事中的場景轉換或某個小節裡的主題移轉)。在之前的 HTML 版本,它代表著一條水平標線。在視覺瀏覽器裡,它現在可能還是以水平標線的型式呈現;但它已經被重新定義為一個語義上的用詞,而不是呈現上的。
<li> (en-US) Represents an item in a list. It must be contained in a parent element: an ordered list (<ol> (en-US)), an unordered list (<ul> (en-US)), or a menu (<menu> (en-US)). In menus and unordered lists, list items are usually displayed using bullet points. In ordered lists, they are usually displayed with an ascending counter on the left, such as a number or letter.
<menu> (en-US) A semantic alternative to (<ul> (en-US), but treated by browsers (and exposed through the accessibility tree) as no different than (<ul> (en-US). It represents an unordered list of items (which are represented by (<li> (en-US) elements).
<ol> (en-US) Represents an ordered list of items — typically rendered as a numbered list.
<p> (en-US) Represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields.
<pre> (en-US) Represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or monospaced, font. Whitespace inside this element is displayed as written.
<ul> (en-US) 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.

Element Description
<a> 建立通往其他頁面、檔案、Email 地址、或其他 URL 的超連結。
<abbr> (en-US) Represents an abbreviation or acronym.
<b> (en-US) Used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use <b> for styling text or granting importance. If you wish to create boldface text, you should use the CSS font-weight (en-US) property. If you wish to indicate an element is of special importance, you should use the strong element.
<bdi> (en-US) Tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text. It's particularly useful when a website dynamically inserts some text and doesn't know the directionality of the text being inserted.
<bdo> (en-US) Overrides the current directionality of text, so that the text within is rendered in a different direction.
<br> 會產生文字的斷行(carriage-return、CR 或是確認鍵)。此元素主要用於斷行有所意義的時候,像是寫詩或寫住址。
<cite> (en-US) Used to mark up the title of a cited creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.
<code> 表現出電腦程式碼的片段。通常,它會由瀏覽器預設的 monospace 字體顯示出來。
<data> (en-US) 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> (en-US) Used to indicate the term being defined within the context of a definition phrase or sentence. The ancestor <p> (en-US) element, the <dt> (en-US)/<dd> (en-US) pairing, or the nearest section ancestor of the <dfn> element, is considered to be the definition of the term.
<em> (en-US) Marks text that has stress emphasis. The <em> element can be nested, with each level of nesting indicating a greater degree of emphasis.
<i> (en-US) 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. Historically, these have been presented using italicized type, which is the original source of the <i> naming of this element.
<kbd> (en-US) Represents a span of inline text denoting textual user input from a keyboard, voice input, or any other text entry device. By convention, the user agent defaults to rendering the contents of a <kbd> element using its default monospace font, although this is not mandated by the HTML standard.
<mark> (en-US) Represents text which is marked or highlighted for reference or notation purposes due to the marked passage's relevance in the enclosing context.
<q> 指示一段元素內的文字,屬於行內引文。這個元素適用於不須換行的短引文,針對長引文,請使用 <blockquote> 元素。
<rp> (en-US) Used to provide fall-back parentheses for browsers that do not support display of ruby annotations using the <ruby> element. One <rp> element should enclose each of the opening and closing parentheses that wrap the <rt> (en-US) element that contains the annotation's text.
<rt> (en-US) 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> element.
<ruby> 旁註標記,用於標示東亞文字的發音。
<s> (en-US) 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> (en-US) Used to enclose inline text which represents sample (or quoted) output from a computer program. Its contents are typically rendered using the browser's default monospaced font (such as Courier or Lucida Console).
<small> (en-US) 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> (en-US) 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. It should be used only when no other semantic element is appropriate. <span> is very much like a div element, but div is a block-level element whereas a <span> is an inline element (en-US).
<strong> (en-US) Indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type.
<sub> (en-US) Specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.
<sup> (en-US) Specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller text.
<time> 用以表示時間,可以是 24 小時制時間或以公曆紀年的日期(日期可以添加時間和時區的資訊)
<u> (en-US) Represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation. This is rendered by default as a simple solid underline, but may be altered using CSS.
<var> (en-US) Represents the name of a variable in a mathematical expression or a programming context. It's typically presented using an italicized version of the current typeface, although that behavior is browser-dependent.
<wbr> (en-US) 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 supports various multimedia resources such as images, audio, and video.

Element Description
<area> (en-US) Defines an area inside an image map that has predefined clickable areas. An image map allows geometric areas on an image to be associated withhyperlink (en-US).
<audio> (en-US) Used to embed sound content in documents. It may contain one or more audio sources, represented using the src attribute or the source element: the browser will choose the most suitable one. It can also be the destination for streamed media, using a MediaStream (en-US).
<img> (en-US) Embeds an image into the document.
<map> (en-US) Used with <area> (en-US) elements to define an image map (a clickable link area).
<track> (en-US) 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. The tracks are formatted in WebVTT format (.vtt files)—Web Video Text Tracks.
<video> (en-US) 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.

Element Description
<embed> (en-US) 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> (en-US) Represents a nested browsing context, embedding another HTML page into the current one.
<object> (en-US) Represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.
<picture> 包含了零或零以上個 <source> (en-US) 元素以及一個 <img> (en-US) 元素,以為不同顯示器/裝置提供同張圖片的不同版本。
<portal> (en-US) Enables the embedding of another HTML page into the current one for the purposes of allowing smoother navigation into new pages.
<source> (en-US) Specifies multiple media resources for the picture, the audio element, or the video element. It is a void element, meaning that it has no content and does not have a closing tag. It is commonly used to offer the same media content in multiple file formats in order to provide compatibility with a broad range of browsers given their differing support for image file formats (en-US) and media file formats.

SVG and MathML

You can embed SVG and MathML content directly into HTML documents, using the <svg> (en-US) and <math> (en-US) elements.

Element Description
<svg> (en-US) Container defining a new coordinate system and viewport (en-US). It is used as the outermost element of SVG documents, but it can also be used to embed an SVG fragment inside an SVG or HTML document.
<math> (en-US) The top-level element in MathML. Every valid MathML instance must be wrapped in it. In addition you must not nest a second <math> element in another, but you can have an arbitrary number of other child elements in it.

腳本

In order to create dynamic content and Web applications, HTML supports the use of scripting languages, most prominently JavaScript. Certain elements support this capability.

Element Description
<canvas> 可以被使用於對腳本程式(JaveScript)繪圖。舉例來說, 它能用來畫圖、組合照片,甚至作動畫。你也許(應該) 在 <canvas> 區段內提供替代方案的內容 .這內容將能被一些不支援 <canvas> 以及無法使用 Javescript 功能的瀏覽器所渲染。
<noscript> (en-US) 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> 能嵌入或引用要執行的程式碼。最常見的用途是嵌入或引用 JavaScript 程式碼。<script> 元素也能執行其他語言,例如 WebGL 的 GLSL shader 程式語言。

Demarcating edits

These elements let you provide indications that specific parts of the text have been altered.

Element Description
<del> (en-US) Represents a range of text that has been deleted from a document. This can be used when rendering "track changes" or source code diff information, for example. The <ins> element can be used for the opposite purpose: to indicate text that has been added to the document.
<ins> (en-US) Represents a range of text that has been added to a document. You can use the <del> element to similarly represent a range of text that has been deleted from the document.

表格

The elements here are used to create and handle tabular data.

Element Description
<caption> (en-US) Specifies the caption (or title) of a table.
<col> (en-US) Defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a <colgroup> (en-US) element.
<colgroup> (en-US) Defines a group of columns within a table.
<table> 代表表格數據——換句話說,就是透過二維資料表來呈現資訊。
<tbody> (en-US) Encapsulates a set of table rows (<tr> (en-US) elements), indicating that they comprise the body of the table (<table>).
<td> (en-US) Defines a cell of a table that contains data. It participates in the table model.
<tfoot> (en-US) Defines a set of rows summarizing the columns of the table.
<th> (en-US) Defines a cell as header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.
<thead> (en-US) Defines a set of rows defining the head of the columns of the table.
<tr> (en-US) Defines a row of cells in a table. The row's cells can then be established using a mix of <td> (en-US) (data cell) and <th> (en-US) (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.

Element Description
<button> 代表一個可點擊的按鈕。
<datalist> (en-US) Contains a set of <option> (en-US) elements that represent the permissible or recommended options available to choose from within other controls.
<fieldset> (en-US) Used to group several controls as well as labels (<label> (en-US)) within a web form.
<form> 表示提交訊息的區塊,此區塊含有許多可互動的控制項。
<input> Used to create interactive controls for web-based forms in order to accept data from the user.
<label> (en-US) Represents a caption for an item in a user interface.
<legend> (en-US) Represents a caption for the content of its parent <fieldset> (en-US).
<meter> Represents either a scalar value within a known range or a fractional value.
<optgroup> In a Web form, the HTML <optgroup> element creates a grouping of options within a <select> (en-US) element.
<option> (en-US) Used to define an item contained in a select, an <optgroup>, or a <datalist> (en-US) element. As such, <option> can represent menu items in popups and other lists of items in an HTML document.
<output> (en-US) Container element into which a site or app can inject the results of a calculation or the outcome of a user action.
<progress> (en-US) Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
<select> (en-US) Represents a control that provides a menu of options.
<textarea> (en-US) 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.

Element Description
<details> (en-US) Creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label must be provided using the <summary> element.
<dialog> (en-US) Represents a dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.
<summary> Used as a summary, caption, or legend for the content of a <details> (en-US) element.

Web Components

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.

Element Description
<slot> (en-US) Part of the Web Components (en-US) technology suite, this element 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> 用作保存用戶端內容的機制。該內容在頁面載入時不受渲染,但可以在運行時使用 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.

Element Description
<acronym> (en-US) Allows authors to clearly indicate a sequence of characters that compose an acronym or abbreviation for a word.
<applet> Embeds a Java applet into the document; this element has been deprecated in favor of <object> (en-US).
<big> (en-US) Renders the enclosed text at a font size one level larger than the surrounding text (medium becomes large, for example). The size is capped at the browser's maximum permitted font size.
<center> (en-US) Displays its block-level or inline contents centered horizontally within its containing element.
<content> (en-US) An obsolete part of the Web Components (en-US) suite of technologies—was used inside of Shadow DOM (en-US) as an insertion point, and wasn't meant to be used in ordinary HTML. It has now been replaced by the <slot> (en-US) element, which creates a point in the DOM at which a shadow DOM can be inserted.
<dir> (en-US) Container for a directory of files and/or folders, potentially with styles and icons applied by the user agent. Do not use this obsolete element; instead, you should use the <ul> (en-US) element for lists, including lists of files.
<font> 定義了該內容的字體大小、顏色與表現。
<frame> (en-US) Defines a particular area in which another HTML document can be displayed. A frame should be used within a <frameset>.
<frameset> 用以包含 <frame> (en-US) 元素的元素。
<image> (en-US) An ancient and poorly supported precursor to the <img> (en-US) element. It should not be used.
<marquee> 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> (en-US) 用作插入一段文字的捲動區域。你可以透過屬性,控制文字在到達邊緣後的應對動作。
<nobr> (en-US) 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> (en-US) 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. This element was deprecated in HTML 4.01 and above in favor of placing fallback content between the opening and closing tags of an <object> (en-US) element.
<noframes> (en-US) Provides content to be presented in browsers that don't support (or have disabled support for) the <frame> (en-US) element. Although most commonly-used browsers support frames, there are exceptions, including certain special-use browsers including some mobile browsers, as well as text-mode browsers.
<param> (en-US) Defines parameters for an <object> (en-US) element.
<plaintext> (en-US) Renders everything following the start tag as raw text, ignoring any following HTML. There is no closing tag, since everything after it is considered raw text.
<rb> (en-US) Used to delimit the base text component of a ruby annotation, i.e. the text that is being annotated. One <rb> element should wrap each separate atomic segment of the base text.
<rtc> (en-US) Embraces semantic annotations of characters presented in a ruby of <rb> (en-US) elements used inside of <ruby> element. <rb> (en-US) elements can have both pronunciation (<rt> (en-US)) and semantic (<rtc> (en-US)) annotations.
<shadow> An obsolete part of the Web Components (en-US) technology suite that was intended to be used as a shadow DOM insertion point. You might have used it if you have created multiple shadow roots under a shadow host.
<strike> (en-US) Places a strikethrough (horizontal line) over text.
<tt> (en-US) Creates inline text which is presented using the user agent default monospace font face. This element was created for the purpose of rendering text as it would be displayed on a fixed-width display such as a teletype, text-only screen, or line printer.
<xmp> (en-US) 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.