Comprehensive HTML Elements Guide
Comprehensive HTML Elements Guide
They are grouped by function to help you find what you have in mind easily. An alphabetical list of all elements is provided in
the sidebar on every element's page as well as this one.
Note: For more information about the basics of HTML elements and attributes, see Anatomy of an HTML element.
Main root
Element Description
Represents the root (top-level element) of an HTML document, so it is also referred to as the root element.
<html>
All other elements must be descendants of this element.
Document metadata
Metadata contains information about the page. This includes information about styles, scripts and data to help software
(search engines, browsers, etc.) use and render the page. Metadata for styles and scripts may be defined in the page or
linked to another file that has the information.
Element Description
Specifies the base URL to use for all relative URLs in a document. There can be only one such element in
<base>
a document.
Contains machine-readable information (metadata) about the document, like its title, scripts, and style
<head>
sheets.
Specifies relationships between the current document and an external resource. This element is most
<link> 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.
Represents metadata that cannot be represented by other HTML meta-related elements, like <base> ,
<meta>
<link> , <script> , <style> and <title> .
Element Description
Contains style information for a document or part of a document. It contains CSS, which is applied to the
<style>
contents of the document containing this element.
Defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text;
<title>
HTML tags within the element, if any, are also treated as plain text.
Sectioning root
Element Description
<body> 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
Indicates that the enclosed HTML provides contact information for a person or people, or for an
<address>
organization.
Represents a portion of a document whose content is only indirectly related to the document's
<aside>
main content. Asides are frequently presented as sidebars or call-out boxes.
Represents a footer for its nearest ancestor sectioning content or sectioning root element. A
<footer> <footer> typically contains information about the author of the section, copyright data, or links
to related documents.
<h1> , <h2> ,
Represent six levels of section headings. <h1> is the highest section level and <h6> is the
<h3> , <h4> ,
lowest.
<h5> , <h6>
Element Description
Represents a heading grouped with any secondary content, such as subheadings, an alternative
<hgroup>
title, or a tagline.
Represents the dominant content of the body of a document. The main content area consists of
<main> content that is directly related to or expands upon the central topic of a document, or the central
functionality of an application.
Represents a section of a page whose purpose is to provide navigation links, either within the
<nav> current document or to other documents. Common examples of navigation sections are menus,
tables of contents, and indexes.
Represents a generic standalone section of a document, which doesn't have a more specific
<section> semantic element to represent it. Sections should always have a heading, with very few
exceptions.
Represents a part that contains a set of form controls or other content related to performing a
<search>
search or filtering operation.
Text content
Use HTML text content elements to organize blocks or sections of content placed between the opening <body> and closing
</body> tags. Important for accessibility and SEO, these elements identify the purpose or structure of that content.
Element Description
Indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by
<blockquote> indentation. A URL for the source of the quotation may be given using the cite attribute, while a
text representation of the source can be given using the <cite> element.
Provides the description, definition, or value for the preceding term ( <dt> ) in a description list
<dd>
( <dl> ).
The generic container for flow content. It has no effect on the content or layout until styled in some
<div> way using CSS (e.g., styling is directly applied to it, or some kind of layout model like flexbox is
applied to its parent element).
Represents a description list. The element encloses a list of groups of terms (specified using the
<dl> <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).
Specifies a term in a description or definition list, and as such must be used inside a <dl> element.
<dt> It is usually followed by a <dd> element; however, multiple <dt> elements in a row indicate
several terms that are all defined by the immediate next <dd> element.
Element Description
<figcaption> Represents a caption or legend describing the rest of the contents of its parent <figure> element.
Represents self-contained content, potentially with an optional caption, which is specified using the
<figure>
<figcaption> element. The figure, its caption, and its contents are referenced as a single unit.
Represents a thematic break between paragraph-level elements: for example, a change of scene in
<hr>
a story, or a shift of topic within a section.
Represents an item in a list. It must be contained in a parent element: an ordered list ( <ol> ), an
unordered list ( <ul> ), or a menu ( <menu> ). In menus and unordered lists, list items are usually
<li>
displayed using bullet points. In ordered lists, they are usually displayed with an ascending counter
on the left, such as a number or letter.
A semantic alternative to <ul> , but treated by browsers (and exposed through the accessibility
<menu> tree) as no different than <ul> . It represents an unordered list of items (which are represented by
<li> elements).
Represents a paragraph. Paragraphs are usually represented in visual media as blocks of text
<p> 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.
Represents preformatted text which is to be presented exactly as written in the HTML file. The text
<pre> is typically rendered using a non-proportional, or monospaced , font. Whitespace inside this
element is displayed as written.
Element Description
Together with its href attribute, creates a hyperlink to web pages, files, email addresses, locations
<a>
within the current page, or anything else a URL can address.
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
<b> 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 property. If you wish to indicate an element is of
special importance, you should use the <strong> element.
Tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding
<bdi> text. It's particularly useful when a website dynamically inserts some text and doesn't know the
directionality of the text being inserted.
<bdo> Overrides the current directionality of text, so that the text within is rendered in a different direction.
Produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the
<br>
division of lines is significant.
Used to mark up the title of a creative work. The reference may be in an abbreviated form according to
<cite>
context-appropriate conventions related to citation metadata.
Displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer
<code>
code. By default, the content text is displayed using the user agent's default monospace font.
Links a given piece of content with a machine-readable translation. If the content is time- or date-
<data>
related, the <time> element must be used.
Used to indicate the term being defined within the context of a definition phrase or sentence. The
<dfn> ancestor <p> element, the <dt> / <dd> pairing, or the nearest section ancestor of the <dfn> element,
is considered to be the definition of the term.
Marks text that has stress emphasis. The <em> element can be nested, with each nesting level
<em>
indicating a greater degree of emphasis.
Represents a range of text that is set off from the normal text for some reason, such as idiomatic text,
<i> technical terms, and taxonomical designations, among others. Historically, these have been presented
using italicized type, which is the original source of the <i> naming of this element.
Represents a span of inline text denoting textual user input from a keyboard, voice input, or any other
<kbd> 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.
Represents text which is marked or highlighted for reference or notation purposes due to the marked
<mark>
passage's relevance in the enclosing context.
Indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by
<q> surrounding the text in quotation marks. This element is intended for short quotations that don't require
paragraph breaks; for long quotations use the <blockquote> element.
Element Description
Used to provide fall-back parentheses for browsers that do not support the display of ruby annotations
<rp> using the <ruby> element. One <rp> element should enclose each of the opening and closing
parentheses that wrap the <rt> element that contains the annotation's text.
Specifies the ruby text component of a ruby annotation, which is used to provide pronunciation,
<rt> translation, or transliteration information for East Asian typography. The <rt> element must always be
contained within a <ruby> element.
Represents small annotations that are rendered above, below, or next to base text, usually used for
<ruby> showing the pronunciation of East Asian characters. It can also be used for annotating other kinds of
text, but this usage is less common.
Renders text with a strikethrough, or a line through it. Use the <s> element to represent things that are
<s> 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.
Used to enclose inline text which represents sample (or quoted) output from a computer program. Its
<samp> contents are typically rendered using the browser's default monospaced font (such as Courier or
Lucida Console).
Represents side-comments and small print, like copyright and legal text, independent of its styled
<small>
presentation. By default, it renders text within it one font size smaller, such as from small to x-small .
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
<span> 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-
level element.
Indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render
<strong>
the contents in bold type.
Specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts
<sub>
are typically rendered with a lowered baseline using smaller text.
Specifies inline text which is to be displayed as superscript for solely typographical reasons.
<sup>
Superscripts are usually rendered with a raised baseline using smaller text.
Represents a specific period in time. It may include the datetime attribute to translate dates into
<time> machine-readable format, allowing for better search engine results or custom features such as
reminders.
Represents a span of inline text which should be rendered in a way that indicates that it has a non-textual
<u>
annotation. This is rendered by default as a single solid underline but may be altered using CSS.
Element Description
Represents the name of a variable in a mathematical expression or a programming context. It's typically
<var> presented using an italicized version of the current typeface, although that behavior is browser-
dependent.
Represents a word break opportunity—a position within text where the browser may optionally break a
<wbr>
line, though its line-breaking rules would not otherwise create a break at that location.
Element Description
Defines an area inside an image map that has predefined clickable areas. An image map allows geometric
<area>
areas on an image to be associated with hyperlink.
Used to embed sound content in documents. It may contain one or more audio sources, represented
<audio> 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 .
<map> Used with <area> elements to define an image map (a clickable link area).
Used as a child of the media elements, audio and video. It lets you specify timed text tracks (or time-
<track> based data), for example to automatically handle subtitles. The tracks are formatted in WebVTT format
( .vtt files)—Web Video Text Tracks.
Embeds a media player which supports video playback into the document. You can also use <video> for
<video>
audio content, but the audio element may provide a more appropriate user experience.
Embedded content
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
Embeds external content at the specified point in the document. This content is provided by an
<embed>
external application or other source of interactive content such as a browser plug-in.
Element Description
Represents a nested browsing context, like <iframe> but with more native privacy features built
<fencedframe>
in.
<iframe> Represents a nested browsing context, embedding another HTML page into the current one.
Represents an external resource, which can be treated as an image, a nested browsing context, or
<object>
a resource to be handled by a plugin.
Contains zero or more <source> elements and one <img> element to offer alternative versions of
<picture>
an image for different display/device scenarios.
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
<source>
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 and media file formats.
Element Description
Container defining a new coordinate system and viewport. It is used as the outermost element of SVG
<svg>
documents, but it can also be used to embed an SVG fragment inside an SVG or HTML document.
The top-level element in MathML. Every valid MathML instance must be wrapped in it. In addition, you
<math> must not nest a second <math> element in another, but you can have an arbitrary number of other child
elements in it.
Scripting
To create dynamic content and Web applications, HTML supports the use of scripting languages, most prominently
JavaScript. Certain elements support this capability.
Element Description
Container element to use with either the canvas scripting API or the WebGL API to draw graphics and
<canvas>
animations.
Defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is
<noscript>
currently turned off in the browser.
Element Description
Used to embed executable code or data; this is typically used to embed or refer to JavaScript code.
<script> The <script> element can also be used with other languages, such as WebGL's GLSL shader
programming language and JSON.
Demarcating edits
These elements let you provide indications that specific parts of the text have been altered.
Element Description
Represents a range of text that has been deleted from a document. This can be used when rendering "track
<del> 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.
Represents a range of text that has been added to a document. You can use the <del> element to similarly
<ins>
represent a range of text that has been deleted from the document.
Table content
The elements here are used to create and handle tabular data.
Element Description
Defines one or more columns in a column group represented by its implicit or explicit parent
<col> <colgroup> element. The <col> element is only valid as a child of a <colgroup> element that has
no span attribute defined.
Represents tabular data—that is, information presented in a two-dimensional table comprised of rows
<table>
and columns of cells containing data.
Encapsulates a set of table rows ( <tr> elements), indicating that they comprise the body of a table's
<tbody>
(main) data.
<td> A child of the <tr> element, it defines a cell of a table that contains data.
Encapsulates a set of table rows ( <tr> elements), indicating that they comprise the foot of a table
<tfoot> with information about the table's columns. This is usually a summary of the columns, e.g., a sum of
the given numbers in a column.
Element Description
A child of the <tr> element, it defines a cell as the header of a group of table cells. The nature of this
<th>
group can be explicitly defined by the scope and headers attributes.
Encapsulates a set of table rows ( <tr> elements), indicating that they comprise the head of a table
<thead> with information about the table's columns. This is usually in the form of column headers ( <th>
elements).
Defines a row of cells in a table. The row's cells can then be established using a mix of <td> (data
<tr>
cell) and <th> (header cell) elements.
Forms
HTML provides several elements that can be used together to create forms that the user can fill out and submit to the
website or application. Further information about this available in the HTML forms guide.
Element Description
An interactive element activated by a user with a mouse, keyboard, finger, voice command, or
<button> other assistive technology. Once activated, it performs an action, such as submitting a form or
opening a dialog.
Contains a set of <option> elements that represent the permissible or recommended options
<datalist>
available to choose from within other controls.
<fieldset> Used to group several controls as well as labels ( <label> ) within a web form.
<form> Represents a document section containing interactive controls for submitting information.
Used to create interactive controls for web-based forms to accept data from the user; a wide
variety of types of input data and control widgets are available, depending on the device and
<input>
user agent. The <input> element is one of the most powerful and complex in all of HTML
due to the sheer number of combinations of input types and attributes.
<meter> Represents either a scalar value within a known range or a fractional value.
Container element into which a site or app can inject the results of a calculation or the
<output>
outcome of a user action.
<selectedcontent> Displays the content of the currently selected <option> inside a closed <select> element.
Represents a multi-line plain-text editing control, useful when you want to allow users to enter
<textarea>
a sizeable amount of free-form text, for example, a comment on a review or feedback form.
Interactive elements
HTML offers a selection of elements that help to create interactive user interface objects.
Element Description
Creates a disclosure widget in which information is visible only when the widget is toggled into an
<details>
"open" state. A summary or label must be provided using the <summary> element.
Represents a dialog box or other interactive component, such as a dismissible alert, inspector, or
<dialog>
subwindow.
Specifies a summary, caption, or legend for a details element's disclosure box. Clicking the <summary>
<summary>
element toggles the state of the parent <details> element open and closed.
Web Components
Web Components is an HTML-related technology that 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
Part of the Web Components technology suite, this element is a placeholder inside a web component
<slot> that you can fill with your own markup, which lets you create separate DOM trees and present them
together.
A mechanism for holding HTML that is not to be rendered immediately when a page is loaded but may
<template>
be instantiated subsequently during runtime using JavaScript.
Obsolete and deprecated elements
Warning: These are old HTML elements that are deprecated and should not be used. You should never use them in
new projects, and you should replace them in old projects as soon as you can. They are listed here for
completeness only.
Element Description
Allows authors to clearly indicate a sequence of characters that compose an acronym or abbreviation
<acronym>
for a word.
Renders the enclosed text at a font size one level larger than the surrounding text ( medium becomes
<big>
large , for example). The size is capped at the browser's maximum permitted font size.
<center> Displays its block-level or inline contents centered horizontally within its containing element.
An obsolete part of the Web Components suite of technologies—was used inside of Shadow DOM as
an insertion point, and wasn't meant to be used in ordinary HTML. It has now been replaced by the
<content>
<slot> element, which creates a point in the DOM at which a shadow DOM can be inserted.
Consider using <slot> instead.
Container for a directory of files and/or folders, potentially with styles and icons applied by the user
<dir> agent. Do not use this obsolete element; instead, you should use the <ul> element for lists,
including lists of files.
<font> Defines the font size, color and face for its content.
Defines a particular area in which another HTML document can be displayed. A frame should be
<frame>
used within a <frameset> .
<image> An ancient and poorly supported precursor to the <img> element. It should not be used.
Used to insert a scrolling area of text. You can control what happens when the text reaches the
<marquee>
edges of its content area using its attributes.
Represents a command that a user is able to invoke through a popup menu. This includes context
<menuitem>
menus, as well as menus that might be attached to a menu button.
Prevents the text it contains from automatically wrapping across multiple lines, potentially resulting in
<nobr>
the user having to scroll horizontally to see the entire width of the text.
<noembed> 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.
Element Description
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> element.
Provides content to be presented in browsers that don't support (or have disabled support for) the
<frame> element. Although most commonly-used browsers support frames, there are exceptions,
<noframes>
including certain special-use browsers including some mobile browsers, as well as text-mode
browsers.
Renders everything following the start tag as raw text, ignoring any following HTML. There is no
<plaintext>
closing tag, since everything after it is considered raw text.
Used to delimit the base text component of a ruby annotation, i.e., the text that is being annotated.
<rb>
One <rb> element should wrap each separate atomic segment of the base text.
Embraces semantic annotations of characters presented in a ruby of <rb> elements used inside of
<rtc> <ruby> element. <rb> elements can have both pronunciation ( <rt> ) and semantic ( <rtc> )
annotations.
An obsolete part of the Web Components technology suite that was intended to be used as a shadow
<shadow> DOM insertion point. You might have used it if you have created multiple shadow roots under a
shadow host. Consider using <slot> instead.
Creates inline text which is presented using the user agent default monospace font face. This
<tt> 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.
Renders text between the start and end tags without interpreting the HTML in between and using a
<xmp> monospaced font. The HTML2 specification recommended that it should be rendered wide enough to
allow 80 characters per line.
See also
Element interface
Your blueprint for a better internet.